1. 원격 브런치 업데이트
브런치를 가져오기 전 github에 있는 브런치들의 정보를 최신화 한다.
git remote update
2.브런치 확인
- 원격 저장소 브런치 확인하기
git branch -r
- 로컬, 원격 저장소 모든 브런치 확인
git branch -a
3. 브런치 가져오기
- 이름 그대로 가져오기
git checkout -t {가져올 브런치 이름}
- 이름 바꿔 가져오기
git checkout -b {바꿀 branch 이름} {원격 저장소의 branch 이름}
참조
https://cjh5414.github.io/get-git-remote-branch/