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.
我不小心从我的 fork 中删除了 master 分支。现在我想将我的 fork 中的 master 重置为上游 master。
我该怎么做呢?
您可以通过跟踪上游 master 分支来创建一个新的 master 分支,并将新创建的 master 分支强制推送到您的分叉 repo。该命令如下所示,
$ git fetch upstream $ git checkout -b master --track upstream/master $ git push <forked-repo-origin> master -f
请尝试一下,如果您需要更多,请告诉我。