git 명령어 정리
GitHub을 혼자 사용할 때는 기본만 알아도 큰 불편함이 없었지만, 여러 사람들과 함께 사용하다 보니, 익숙치 않은 명령어를 사용할 때마다 검색해서 하는 것이 귀찮아서 블로그에 간단히 정리해둔다. GitHub에 여러 계정의 ssh key 사용 (Host 키워드를 사용하여 alias 방법) $ vi ~/.ssh/config Host HOSTA HostName github.com User git IdentityFile ~/.ssh/HOSTA_rsa Host HOSTB HostName github.com User git IdentityFile ~/.ssh/HOSTB_rsa $ git clone git@HOSTA:/xxx.git . Branch 관리 생성 $ git branch $ git checkout -b..