Git은 버전 관리에 있어서 정말 중요한 툴이다. 이를 통해서 이전 기록으로 되돌릴 수도, 임시저장도 할 수 있을 만큼 Git을 잘 사용한다면 개발하는데 정말 많은 도움을 줄 수 있다고 생각한다.
Git의 config 설정방법에는 system, global, local이 있다. 적용범위 System : 시스템의 모든 사용자와 모든 저장소 Global : 시스템의 특정 사용자 local : 특정 저장소
git config --system user.name yongseok //모든 사용자 이름 설정
git config --global user.name “Yongseok Choi” //현재 계정 이름 설정, 띄어쓰기
git config --global user.email yongseok.choi@navercorp.com //현재 계정 이메일 설정
git config --global core.editor nano //git 기본 editor 설정
git config --global diff.tool vimdiff //diff tool
git config –list
명령어를 통해서 모든 git 설정 정보를 볼 수 있다.
Git의 각 영역에는 각각 담당하는 영역이 구분지어져 있다.
git init // working directory 갖는 저장소 생성
git init -bare// working directory 없는 저장소 생성
Git clone https://github.com/dydtjr1128/RemoteAssistance-Cpp // 해당 remote 저장소에서 가져오는 저장소
git status
https://www.slideshare.net/insanehong/gitbasiccommands