Home  >  Q&A  >  body text

git 无法切换到主分支

我在用该指令创建一个分支之后。git branch new_featuregit checkout new_feature
再用git checkout master指令他就无法切换到主分支。
报错:error: pathspec 'master' did not match any file(s) known to git.
请问这是怎么回事?求指导。谢谢!

怪我咯怪我咯2727 days ago718

reply all(1)I'll reply

  • PHP中文网

    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.

    reply
    0
  • Cancelreply