赞
踩
切换分支:
[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、切换分支
[root@git my_code]# git checkout master
[root@git my_code]# git branch --list
此时切换分支成功,问题解决
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。