コンテンツにスキップ

Top

git で push 後の commit コメント を変更する方法

push する前なら、

git commit --amend

で変更できるのでそれで終わり。

push 後だと、上記で変更後、pushしようとすると、

 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to 'ssh://192.168.1.1/~/git/test'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.

と怒られる。

けど、間違ってないんなら、強制でpushできるので強制でpushする。

git push -f origin master
と、-f (force) をつければ強制的にpushされる。

古いcommitログを変更したい場合も、当然、古いcommitのところまで戻ってチェックアウトすれば上記で変更できる。

以上!