我正在尝试使用以下命令从功能分支切换到主分支,但我面临以下问题。如何切换回主分支
当前分支以git bash显示:
feature/test
使用的命令:
git checkout master
错误:
error: pathspec 'master' did not match any file(s) known to git
答案 0 :(得分:0)
error: pathspec 'master' did not match any file(s) known to git
)不存在时,会显示消息master
。
我猜您本地存储库中没有分支master
,并且本地存储库未更新。
请尝试git branch -a
显示存储库中的所有分支。
如果未找到分支master
或remote/origin/master
,请尝试git remote update
从集中存储库中获取数据,然后再次使用git branch -a
。如果存在分支master
或remote/origin/master
,则可以立即检出它们。
答案 1 :(得分:0)
我认为您只需提取即可更新origin
文件夹。
尝试git fetch
,您应该很容易找到母版。