に私はChange old commit message on Gitから段階を追った、と私はgit log
で更新コミットメッセージを確認しました。しかし、Githubの「Commit History」タブをクリックすると、古いメッセージと古いSHA-1が表示されます。はgitlogでOKコミットメッセージを変更しなくgithubの
だから、私は盲目的にgit push origin master
を試してみましたが、それは失敗しました:
To [email protected]:foobar.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to '[email protected]:foobar.git'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes (e.g. 'git pull') before pushing again. See the
'Note about fast-forwards' section of 'git push --help' for details.
エラーが「再びプッシュする前に、リモートの変更をマージ」を私に伝えますが、それは行うには間違ったことのように思える:新をマージ修正されたコミット(古いベースから)よくわかりません。
どのように私は私の改正メッセージをコミットすることができますか? @xsaceが言うように、あなたがここに歴史を書き換えている
git push --force
ありがとうございました。 – user748113