git——创建分支后,切换分支报错(error: pathspec 'master' did not match any file(s) known to git)

Posted superjishere

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git——创建分支后,切换分支报错(error: pathspec 'master' did not match any file(s) known to git)相关的知识,希望对你有一定的参考价值。

error: pathspec ‘master‘ did not match any file(s) known to git

解决办法:

1.查看分支

git branch -a

2.获取所有分支

git fetch

3.切换到远程master分支:

git checkout origin/master

4.执行git branch,可以看到我们想切换的那个分支

5.从当前的分支切换并新建分支,可以理解为即将新创建的分支是由当前分支出来的

git checkout -b 新分支名

6.建立本地分支和远程分支的追踪关系

git branch -u origin/master 新分支名

7.就可以pull了

 

 

参考资料:

https://blog.csdn.net/wankui/article/details/53328369

以上是关于git——创建分支后,切换分支报错(error: pathspec 'master' did not match any file(s) known to git)的主要内容,如果未能解决你的问题,请参考以下文章

git切换分支报错解决

Git分支怎么切换到远端分支

git与eclipse集成之创建及切换个人本地分支

git分支管理

git 本地创建分支和远程分支关联

Git分支操作