我从Heroku中提取了一个项目,现在当我尝试在我的localhost上创建一个新分支时,我总是收到此错误消息:
git checkout new_branch
error: pathspec 'new_branch' did not match any file(s) known to git.
当我运行git branch -a
时,我得到了
* master
remotes/heroku/HEAD -> heroku/master
remotes/heroku/master
导致此错误的原因是什么?而且,我该如何解决?
谢谢
答案 0 :(得分:4)
您需要说git checkout -b new_branch
来创建分支。请参阅此处的结帐文档:
http://www.kernel.org/pub/software/scm/git/docs/git-checkout.html