我在用该指令创建一个分支之后。git branch new_featuregit checkout new_feature再用git checkout master指令他就无法切换到主分支。报错:error: pathspec 'master' did not match any file(s) known to git.请问这是怎么回事?求指导。谢谢!
走同样的路,发现不同的人生
这个错误应该是没有 master 这个分支,你可以通过
master
git branch
看一下当前有哪些分支或者 git checkout -b master 切换回主分支。
git checkout -b master
这个错误应该是没有
master
这个分支,你可以通过看一下当前有哪些分支
或者
git checkout -b master
切换回主分支。