Git: cannot checkout branch - error: pathspec '…' did not match any file(s) known to git

后端 未结 30 3290
太阳男子
太阳男子 2020-11-27 23:54

I\'m not sure why I\'m unable to checkout a branch that I had worked on earlier. See the commands below (note: co is an alias for checkou

30条回答
  •  失恋的感觉
    2020-11-28 00:39

    I was getting this error when I tried to checkout new branch:

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

    When I tried git checkout origin/, I got the detached HEAD:

    (detached from origin/)

    Finally, I did the following to resolve the issue:

    git remote update
    git fetch 
    git checkout --track origin/
    

提交回复
热议问题