전체 글17 windows cmd :: github email 변경하기 github 에 연결된 프로젝트의 저장소 경로로 이동한다. cmd 에서 이동하는 명령어는 cd + (저장소) git config --list 하면 git 관련 configuration 을 보여준다. user.email 부분에 github 과 연결된 이메일 주소를 보여준다. 다음의 이메일 주소를 변경하려면 git config --global user.email (변경할 이메일주소) 을 입력한다. 변경한 다음 다시 git config --list 해서 이메일이 제대로 변경되어 있는지 확인할 수 있다. 이메일만 나오게 출력하려면 git config user.email 만 입력하면 된다. 2021. 5. 5. windows cmd :: chrome 열기 start chrome 하면 chrome 켜짐 start chrome www.naver.com 하면 chrome 에서 네이버 창 켜기 2021. 5. 5. windows cmd color 변경하기 2021. 5. 5. remix solidity struct 사용 코드 struct 는 다양한 데이터 타입을 넣을 수 있는 구조체 독립적으로는 잘 사용하지 않음 struct 를 만들고 리스트에 값을 넣어서 사용 더보기 pragma solidity 0.8.0; contract Last_days_of_April { struct student { string name; uint year; uint month; uint day; uint score; } student[] students; function setStudent(string memory _name, uint _year, uint _month, uint _day, uint _score) public { students.push(student(_name, _year, _month, _day, _score)); } funct.. 2021. 4. 30. 이전 1 2 3 4 5 다음