관리 메뉴

CASSIE'S BLOG

깃허브 push 한 다음에 branch 바꾸려니까 오류 본문

PROGRAMMING/깃허브

깃허브 push 한 다음에 branch 바꾸려니까 오류

ITSCASSIE1107 2023. 8. 13. 12:11

error: pathspec 'practice/4-6' did not match any file(s) known to git

 

  • branch 이동하기

git checkout [branch name]

<옵션>

-b : branch 생성하고 이동

*error: pathspec '[branch name]' did not match any file(s) known to git

해당 에러는 로컬저장소 git과 리모트 저장소 git이 동기화가 되지 않아서 브랜치를 참조하지 못해서 발생.

git remote update

git checkout [branch name]

 

 

반응형