Git
깃(Git) 오류 해결 - fatal: 'origin/remote-branch-name' is not a commit and a branch 'local-branch-name' cannot be created from it
푸드듥
2022. 6. 13. 08:50
반응형
문제
깃허브에 있는 브랜치를 가져오려고 하니 다음과 같은 오류가 뜬다
fatal: 'origin/remote-branch-name' is not a commit and a branch 'local-branch-name' cannot be created from it
해결 방법
$ git fetch --all
를 해주고 다시 가져오면 된다.
반응형