您的分支机构和“来源/主服务器”已经分开,但覆盖了服务器

时间:2019-05-16 09:06:53

标签: git github

我刚刚做了this here,并删除了一些第一次提交的内容。
经过最后一步,我得到了这个
Your branch and 'origin/master' have diverged, and have 27 and 32 different commits each, respectively (use 'git pull' to merge the remote branch into yours)

我现在想将其推送到github,以便在github上仅显示我当前在本地的27个提交。

我只需要进行正常的推送?

(其他问题询问如何通过合并解决此问题,但我想扔掉服务器上的内容并用本地数据覆盖它,以便第一次提交不再退出)

1 个答案:

答案 0 :(得分:2)

如果您想完全覆盖远程提交,则可以使用git push -f(强制推送)。