git报错解决 pathspec

转载:https://www.cnblogs.com/Alan-Jones/p/6098360.html


项目上有一个分支testGit,使用 git branch -a看不到该远程分支,直接使用命令git checkout testGit报错如下:

    error: pathspec 'origin/test' did not match any file(s) known to git.

解决方法: 
1、执行命令git fetch取回所有分支的更新
2、执行git branch -a可以看到test分支(已经更新分支信息)
3、切换分支git checkout test



你可能感兴趣的:(版本管理)