I stupidly did a Git commit while half asleep, and wrote the totally wrong thing in the commit message. How do I change the commit message?

I have not yet pushed the commit to anyone.

link

61% accept rate
198  
For those somewhat new to git: Laurie's point about having not yet pushed is important. Like rebasing, this is changing the history. If someone has cloned/pulled from your repo between the original and rewritten history then they won't be able to pull after the rewrite (for that branch). – Pat Notz Oct 10 '08 at 20:12
So, how could one change the commit message after one have pushed? – Mathias Madsen Stav Apr 11 at 10:54
@PatNotz: or even worse, it will merge with the revised version of itself. – gahooa May 9 at 23:28
feedback

6 Answers

up vote 1081 down vote accepted
git commit --amend -m "New commit message"

Used to amend the tip of the current branch. Prepare the tree object you would want to replace the latest commit as usual (this includes the usual -i/-o and explicit paths), and the commit log editor is seeded with the commit message from the tip of the current branch. The commit you create replaces the current tip -- if it was a merge, it will have the parents of the current tip as parents -- so the current top commit is discarded.

It is a rough equivalent for:

$ git reset --soft HEAD^
$ ... do something else to come up with the right tree ...
$ git commit -c ORIG_HEAD

but can be used to amend a merge commit.

link
41  
+1 my all time favorite command in Git – Evan Plaice Jun 25 '10 at 3:18
10  
However git commit --amend isnt as powerful as git rebase -i. – Jeffrey Jose Jul 5 '10 at 8:40
1  
@jeffjose, It definitely doesn't need to be. Also, git commit --amend can fix up the (a?) master commit. – strager Jul 14 '10 at 6:02
9  
This doesn't exactly answer the question. He wants to know, specifically, how to change the comment – PandaWood Aug 11 '11 at 0:29
64  
@PandaWood, git commit --amend -m "New commit message" – Spoom Sep 16 '11 at 16:19
show 2 more comments
feedback
git commit --amend -m "your new message"
link
85  
This is the only reply (at time of this comment) that exactly answers the question! – philsquared Apr 5 '10 at 17:42
14  
And it still is. – Mark Beckwith Apr 21 '10 at 19:23
4  
This is the right answer! – rp. May 26 '10 at 21:20
5  
The year 2011... and it still is. – micahwittman Jan 5 '11 at 23:45
24  
+1. The correct answer. Interestingly, as of today this is @lfx_cool's only appearance on SO. 700+ rep from his/her first answer... I'm jealous. :-) – Christoffer Lette Feb 2 '11 at 14:29
show 7 more comments
feedback

If the commit you want to fix isn’t the most recent one:

  1. git rebase --interactive $parent_of_flawed_commit

    If you want to fix several flawed commits, pass the parent of the oldest one of them.

  2. An editor will come up, with a list of all commits since the one you gave.

    1. Change pick to reword (or on old versions of Git, to edit) in front of any commits you want to fix.
    2. Once you save, git will replay the listed commits.

  3. Git will drop back you into your editor for every commit you said you want to reword, and into the shell for every commit you wanted to edit. If you’re in the shell:

    1. Change the commit in any way you like.
    2. git commit --amend
    3. git rebase --continue

Most of this sequence will be explained to you by the output of the various commands as you go. It’s very easy, you don’t need to memorise it – just remember that git rebase --interactive lets you correct commits no matter how long ago they were.


Note that you will not want to change commits that you have already pushed. Or maybe you do, but in that case you will have to take great care to communicate with everyone who may have pulled your commits and done work on top of them. How do I recover/resynchronise after someone pushes a rebase or a reset to a published branch?

link
14  
Can one change the message of the first commit (which doesn't have a parent)? – 13ren Jan 21 '10 at 19:57
5  
life saver for me – drudru Mar 30 '10 at 19:51
7  
This is mentioned in one of the other answers but I will put a note of it here. Since git 1.6.6 you can use reword in place of pick to edit the log message. – MitMaro May 31 '10 at 13:27
24  
Incidentally, $parent_of_flawed_commit is equivalent to $flawed_commit^. – Peeja Nov 28 '10 at 23:26
8  
Never EVER do this (or rebase in general) if you have already pushed upstream! – Daniel Rinser May 31 '11 at 19:14
show 8 more comments
feedback

To amend previous commit make the changes you want and stage those changes, and then use

git commit --amend

to amend previous commit, and keep the same log message use

git commit --amend -C HEAD

to fix the previous commit by removing it entirely use

git reset --hard HEAD^

If you want to edit more than one commit message use

git rebase -i HEAD~COMMIT_COUNT

Do not forget to replace COMMIT_COUNT with number of commits that you want to edit.

This command launches editor, mark the first commit (the one that you want to change) as "edit" instead of "pick", then save and exit your editor.

make the change you want to commit then:

git commit --amend
git rebase --continue
link
feedback

A plain

git commit --amend

will run your editor and load the previous commit message. All you have to do is edit it and save.

link
feedback

As already mentioned, git commit --amend is the way to overwrite the last commit. One note: if you would like to also overwrite the files, the command would be

git commit -a --amend -m "My new commit message"

link
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.