코드/Git

[git] checkout 새로 추가된 브랜치 >> error: pathspec 'BRANCH-NAME' did not match any file(s) known to git.

Yeah-Panda 2016. 3. 21. 15:29

repository 에 새로운 브렌치가 업데이트 되어서 checkout 해보려는 데 저런 에러가 뜬다

error: pathspec 'BRANCH-NAME' did not match any file(s) known to git.

브랜치가 업데이트 안되서 그런거니 이렇게 해주면 된다

git remote update
git fetch
#git checkout 브랜치

 

그래도 제대로 안된다면

git checkout -t remote_name/branch_name

이러면 거의 되지 싶다.