我在用该指令创建一个分支之后。git branch new_featuregit checkout new_feature
再用git checkout master指令他就无法切换到主分支。
报错:error: pathspec 'master' did not match any file(s) known to git.
请问这是怎么回事?求指导。谢谢!
PHP中文网2017-05-02 09:33:08
This error should be that there is no master
this branch, you can pass
git branch
See what branches are currently available
or git checkout -b master
switch back to the main branch.