Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 phpstorm 的新手,我已经删除了本地 phpstorm 上的 master 分支。我如何在 phpstorm 上重新创建它
这取决于你如何删除它以及之后你做了什么......
但最简单和最安全的是:
用于git reflog查找 master 分支的最后一次提交。
git reflog
用于git checkout HEAD@{X}转到最后一次提交。如果删除后没有做任何操作,X 为 1。
git checkout HEAD@{X}
用于git checkout -b master在该提交上创建主分支。
git checkout -b master
如果您正在使用远程存储库(例如来源),您可以选择设置跟踪:
git branch --track master origin/master