-1

今天早些时候,我执行了git reset --hard 12345abc将本地副本恢复为特定提交的操作。现在,当我尝试将新更改推送到原始主机时,我收到以下错误:

注意:上面的“12345abc”是一个示例提交号

error: failed to push some refs to 'git@github.com:example/example.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Merge the remote changes (e.g. 'git pull')
hint: before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

我怎样才能继续提交我的新更改并将它们推送到原始主机?

4

1 回答 1

4
$ git push -f

将解决您的问题。

注意:除非被其他提交、分支或标签引用,12345abc并且其所有子提交都将被垃圾收集(因为不再引用它们,Git 假定它们是无用的)

于 2013-02-18T00:19:45.503 回答