목록개발/Github (1)
개발자 되어버리기
github 명령어
giGit 설치하기 - https://git-scm.com/downloads 2) 미리 저장되어 있을지 모를 계정정보 삭제 (처음설치시 생략가능 )# git config --global --unset credential.helper# git config --system --unset credential.helper 3) 본인계정 이메일 (Github 계정이메일)과 이름(본인 영문이름 , Github아이디 X)을적자# git config user.email “exam@abcd.com”# git config user.name "Koo bonik” Git 상태확인 명령어# git show // 내 계정 연결 상태 확인# git log // 로그확인# git shortlog // 짧은 로그 확인# git dif..
개발/Github
2017. 6. 28. 08:17