git-branch
branchcreate branch1$ git branch {{branch-name}} see branch info -> log with decorate option. 1$ git log --decorate switch to branch1$ git checkout {{branch-name}
branchcreate branch1$ git branch {{branch-name}} see branch info -> log with decorate option. 1$ git log --decorate switch to branch1$ git checkout {{branch-name}
1.최초 설정사용자 이름과 메일 주소 설정1$ git config --global user.name "FirstName Lastname"2$ git config --global user.email "yourEmail@example.com" 명령어 UI 기본 설정1$ git config --golobal color.ui a
2. SSH Key 관련SSH Key 생성1$ ssh-keygen -t rsa -C "yourEmail@example.com"2Generating public/private rsa key pair.3Enter file in which to save the key (/c/Users/yourUserDirec