今天早些时候,我执行了git reset --hard 12345abc
将本地副本还原为特定提交。现在,当我尝试将新更改推送到origin master时,我收到以下错误:
注意:上面的“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.
我如何继续进行新的更改并将其推送到原始主人?
答案 0 :(得分:4)
$ git push -f
将解决您的问题。
注意:除非其他提交,分支或标记引用,12345abc
及其所有子提交都将被垃圾收集(因为没有任何引用它们,Git认为它们没用)