git切换分支时报错
切换分支:
[root@git my_code]# git checkout master
产生如下报错:
error: pathspec 'master' did not match any file(s) known to git.
解决方法:
1、查看一下分支状况:
[root@git my_code]# git branch -a
2、若没有看到你想要的分支,先获取全部分支:
[root@git my_code]# git fetch
3、此时再查看一下分支情况
[root@git my_code]# git branch -a
可以看到我们想要的分支被显示出来了
4、切换分支文章来源:https://www.toymoban.com/news/detail-593136.html
[root@git my_code]# git checkout master
[root@git my_code]# git branch --list
此时切换分支成功,问题解决文章来源地址https://www.toymoban.com/news/detail-593136.html
到了这里,关于git切换分支时报错(error: pathspec ‘master‘ did not match any file(s) known to git.)的解决方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!