Local에 있는 branch 목록보기
git branch -l
Remote에 있는 branch 목록보기
git branch -r
Local, Remote에 있는 모든 branch 목록보기
git branch -a
branch 변경하기
git checkout <branch>
예시
$ git checkout test
Switched to branch 'test'
$ git checkout master
Switched to branch 'master'
Your branch is up-to-date with 'origin/master'.
'Git' 카테고리의 다른 글
Git - merge 취소하기 (0) | 2016.12.21 |
---|---|
Git - 변경파일 내역 임시 제외하기 (0) | 2016.11.11 |
Git - add, commit, push 취소하기 (0) | 2016.11.11 |