Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
435  
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
15  
So, how could one change the commit message after one have pushed? – Mathias Madsen Stav Apr 11 '12 at 10:54
15  
@MathiasMadsenStav You would just need to git push --force. – Olivier Jun 19 '12 at 8:57
14  
But that would suck. Never ever amend/rebase after push. This basically breaks the whole merge stuff when another developer wants to pull your changes. – The-Kenny Sep 14 '12 at 13:36
2  
@skot Things are likely to break and screw up the history in that case though. If you have to rebase commits which are parent commits in other branches/instances, a pull from these will re-import those commits after the rebase, which will kinda screw up the history. – Jonas Wielicki Nov 26 '12 at 16:28
show 3 more comments

17 Answers

up vote 3106 down vote accepted
+50
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.

share|improve this answer
44  
However git commit --amend isnt as powerful as git rebase -i. – Jeffrey Jose Jul 5 '10 at 8:40
17  
@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
105  
@PandaWood, git commit --amend -m "New commit message" – Spoom Sep 16 '11 at 16:19
22  
If you've already pushed, just force push again: git push -f origin branchname – hughes May 2 '12 at 14:12
21  
@hughes isn't git push -f a bit dangerous if other people are using the same repository? – Alison Nov 8 '12 at 7:48
show 6 more comments
git commit --amend -m "your new message"
share|improve this answer
126  
This is the only reply (at time of this comment) that exactly answers the question! – philsquared Apr 5 '10 at 17:42
4  
This is only the right answer if your commit message will only be one line long. – Kyralessa May 13 '11 at 18:22
5  
I don't know what it is about git that makes people answer simple questions with long, technical answers that delve into the depths of how git works. I encountered a similar popularity surge to one of my answers to a git question (stackoverflow.com/questions/277077/…), while everyone else gave all this extra technical information that 99.9% or users would never need if they are search SA for an answer to this question. – Earl Jenkins Sep 26 '11 at 22:31
I did git commit --amend -m "New message", but pushing to Github generated the "Merge the remote changes before pushing again". After pull, commit --amend, and push again, the new message doesn't appear. Instead I have "Merge branch 'master' of github.com:[myrepo]" – Dave Everitt Oct 14 '11 at 16:58
@DaveEveritt you most likely pushed your commit upstream before trying to fix it. – Thorbjørn Ravn Andersen Apr 25 at 8:21
show 1 more comment

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?

share|improve this answer
18  
Can one change the message of the first commit (which doesn't have a parent)? – 13ren Jan 21 '10 at 19:57
11  
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
39  
Incidentally, $parent_of_flawed_commit is equivalent to $flawed_commit^. – Peeja Nov 28 '10 at 23:26
20  
Never EVER do this (or rebase in general) if you have already pushed upstream! – Daniel Rinser May 31 '11 at 19:14
4  
Use -p (--preserve-merges) if there was a merge after the flawed commit. – ahven Jan 31 '12 at 14:37
show 5 more comments

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

git commit --amend

To amend the previous commit and keep the same log message, run

git commit --amend -C HEAD

To fix the previous commit by removing it entirely, run

git reset --hard HEAD^

If you want to edit more than one commit message, run

git rebase -i HEAD~commit_count

Replace commit_count with number of commits that you want to edit.

This command launches your 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 and then run

git commit --amend
git rebase --continue
share|improve this answer
19  
Somehow this answer manages to completely avoid the one specific feature needed by Laurie, namely changing the commit message. – Thomas Aug 28 '12 at 12:54
5  
I feel it's worth pointing out that Thomas is wrong here. The very first line "git commit --amend" does exactly what Laurie is asking for. – teflon19 Apr 7 at 19:30
Exactly, Not sure why Thomas thinks this answer does not take care of the question. – Umang Desai Apr 24 at 8:06

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.

share|improve this answer
13  
+1 excellent, but beware that this will also fold in any staged modifications. – Rhubbarb Jun 12 '12 at 10:20

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"

share|improve this answer

I prefer this way.

git commit --amend -c <commit ID>

Otherwise, there will be a new commit with a new commit ID

share|improve this answer
For me, using your command above actually creates a new commit with a new commit ID plus an extra commit saying "merge branch" as a default commit message. – Jan Mar 29 at 16:27

You also can use git filter-branch for that.

git filter-branch -f --msg-filter "sed 's/errror/error/'" $flawed_commit..HEAD

It's not as easy as a trivial "git commit --amend", but it's especially useful, if you already have some merges after your erroneous commit message.

Note that this will try to rewrite EVERY commit between HEAD and the flawed commit, so you should choose your msg-filter command very wise ;-)

share|improve this answer
Is there a version of this that does not change the commit if the regex doesn't find anything? – sjakubowski Mar 28 at 20:08
AFAIK filter-branch --msg-filter will generate new commits in any case. However, you could check within the msg-filter, if the sed succeeded and use this information when the filter-branch operation ends to reset your tree to refs/original. – Mark Mar 29 at 16:16
  1. If you only want to modify your last commit message, then do:

    $ git commit --amend That will drop you into your text exitor and let you change the last commit message.

  2. If you want to change the last 3 commit messages, or any of the commit messages up to that point, supply 'HEAD~3' to the git rebase -i command.

    $ git rebase -i HEAD~3

share|improve this answer

If you have to change an old commit message over multiple branches (i.e., the commit with the erroneous message is present in multiple branches) you might want to use

git filter-branch -f --msg-filter 'sed "s/<old message>/<new message>/g"' -- --all

Git will create a temporary directory for rewriting and additionally backup old references in refs/original/.

-f will enforce the execution of the operation. This is necessary if the the temporary directory is already present or if there are already references stored under refs/original. If that is not the case, you can drop this flag.

-- separates filter-branch options from revision options

--all will make sure, that all branches and tags are rewritten.

Due to the backup of your old references, you can easily go back to the state before executing the command.

Say, you want to recover your master and access it in branch old_master:

git checkout -b old_master refs/original/refs/heads/master
share|improve this answer

if you are using the Git GUI tool there is a button named amend last commit. Click on that button and then it will display your last commit files and message. Just edit that message and you can commit it with new commit message.

Or use this command from a console/ terminal:

git commit -a --amend -m "My new commit message"
share|improve this answer

You can use Git rebasing. For example, if you want to modify back to commit bbc643cd, run

$ git rebase bbc643cd^ --interactive

In the default editor, modify 'pick' to 'edit' in the line whose commit you want to modify. Make your changes and then stage them with

$ git add <filepattern>

Now you can use

$ git commit --amend

to modify the commit, and after that

$ git rebase --continue

to return back to the previous head commit.

share|improve this answer
If you want to make sure your change from git commit --amend took affect you can use git show and it will show the new message. – Steve Tauber Feb 19 at 20:12

If you are using the Git GUI, you can amend the last commit which hasn't been pushed with:

Commit/Amend Last Commit
share|improve this answer

A simple

git commit --amend

command will run an editor with all previous messages. You simply have to edit them...

share|improve this answer
"All", "messages", "them"? git commit --amend only modifies the single most recent commit. – Brad Koch Mar 2 at 16:48

You have a couple of options here. You can do git commit --amend as long as it's your last commit. Otherwise if it's not your last commit you can do an interactive rebase. git rebase -i [branched_from] [hash before commit]. Then inside the interactive rebase you simply add edit to that commit. When it comes up do a git commit --amend and modify the commit message. If you want to roll back before that commit point you could also use git reflog and just delete that commit. Then you just do a git commit again.

share|improve this answer
git commit --amend

To understand in detail, an excellent post can be read here.

It also talks about when not to use git commit --amend

share|improve this answer
git commit --amend

try this code

share|improve this answer
This has been mentioned already in numerous other answers. – Ray Nicholus May 13 at 15:35

protected by Mysticial Apr 2 at 20:27

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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