重新启动远程git分支

可能重复:
如何将修改的提交推送到远程git仓库?
撤消git推送

嗨,

我已经通过使用从主分支中删除了一些提交

git reset --hard SHA_VALUE

我有,但是github上的远程版本库,并且每当我git push东西时,我收到一条错误消息,我应该合并远程存储库中包含的更改(我不想)。

所以我的问题是,什么是远程等同于git reset命令?

谢谢


你可以用“强制”选项使用“git push”

git push -f

通过manpages:

   -f, --force
       Usually, the command refuses to update a remote ref that is not an ancestor of the local ref 
       used to overwrite it. This flag disables the check. This can cause the remote repository to 
       lose commits; use it with care.

我认为你需要做一个“git rebase”。 查阅关于重新印刷的文章,并阅读标题为“常见重新印刷使用实践”的部分。

链接地址: http://www.djcxy.com/p/48911.html

上一篇: Rewinding remote git branch

下一篇: How to create a custom @jsonDeserializer class in java