Git
[Git] Git remote branch 가져오기
git remote update 원격 레포지터리의 브랜치들을 갱신 $ git remote update 원격의 브랜치를 찾지 못해서 발생하는 fatal: Cannot update paths and switch to branch 'feature/rename' at the same time. 라는 오류 메세지를 해결해준다. branch들을 확인하는 법 git branch 로컬 저장소의 branch 리스트를 볼 수 있다 git branch -r 을 사용하면 원격 저장소의 branch 리스트를 볼 수 있다 git branch -a 을 사용하면 로컬, 원격 모든 저장소의 branch 리스트를 볼 수 있다. 원격 저장소의 branch 가져오기 원격 저장소의 branch를 가져오고 싶다면, git checkout -t..