Is there a way to edit a commit message after committing and pushing to GitHub? I see that there is a 'add a note' as well as inline commenting, but no actual editing of a commit message. There is also 'amend commit' in git extensions but that doesn't edit the existing message.
-
You can try reverting the commit (see some options in this SO question: https://stackoverflow.com/questions/4114095/revert-to-previous-git-commit) - only make sure you first back up any code changes so you won't lose those for the sake of a comment! – Traveling Tech Guy May 09 '14 at 17:25
-
1See also [How do I edit an incorrect commit message in Git?](http://stackoverflow.com/questions/179123/how-do-i-edit-an-incorrect-commit-message-in-git) on Stack Overflow. – Arjan May 10 '14 at 10:38
6 Answers
git rebase -i <commit hash you want to change>^This will open your default editor (usually vi) with a list of commits and actions for each one. By default, the action is
pick.For any commit you wish to change the message, change
picktoreword.Save and quit (in vi:
:wq).For each such commit, you'll get an editor to edit the commit message. Change it as you see fit, save and quit.
Once you're done editing all the commit messages, you'll return to the command prompt, and have a new tree with the updated messages.
You can now upload them to github by using
git push origin --force.
If you just need to fix your last commit, you can replace steps 1-4 with git commit --amend.
-
-
3@MatthewPeters I assume there should be a way, but I don't know - I use the commandline directly. – Mureinik May 15 '14 at 15:13
-
5It does not seem that you can specify
, rather you need to specify the hash of the commit preceding the one you want to change or use the HEAD~x where x is the number of commits from HEAD where the item you wish to change resides. – ssc327 Dec 18 '18 at 21:32 -
3@ssc327 Note that I a **`^`** there - I indeed suggested rebasing on the parent of the commit you want to change. – Mureinik Dec 19 '18 at 05:16
-
2
-
When I add `^` in Window's terminal, it asks me "more?". What am I doing wrong? – deadfish Jan 14 '19 at 11:58
-
@deadfish `^` is the line continuation character in Windows' terminal, see [this](https://stackoverflow.com/questions/69068/long-commands-split-over-multiple-lines-in-windows-vista-batch-bat-file). However this works in the git-bash terminal on Windows (that is, [mintty](https://en.wikipedia.org/wiki/Mintty)). – Jan 23 '19 at 09:03
-
-
1@deadfish Using the Windows command line, you must type `^^` to end the command with a literal `^` e.g.: `git rebase -i 2c747b32^^` – Wyck Feb 15 '19 at 00:59
-
What if it was a merge commit ? It looks like : pick c7xxxxxx43 Feature/xx 11111 (#5555) and the actual commit does not show up ??? – pszaba Mar 03 '21 at 14:37
In Intellij Idea you can do it so easy.
- Open Version Control (History)
- Select log tab
- Select commit to change comment
- press F2 (Mac fn + F2), and update your commit message
- 2,633
- 1
- 14
- 24
- 459
- 4
- 2
-
2
-
8You've got to execute `git push origin --force` afterwards as suggested in @Mureinik's answer. – Skocdopole Nov 15 '18 at 08:21
-
-
2
-
The "reword" option is worked fine even you already commit and push, you just need press f2 then commit and push, then again press f2 and edit the message, then you need force push, it helps me edit pushed commit. – fedrbodr Jan 14 '19 at 09:28
-
The "reword" option is greyed out when the commit has been pushed to the remote repo. The F2 key does nothing. Tested with Intellij IDEA 2019.1 ultimate. – jplandrain Apr 11 '19 at 09:01
-
1To do it with Intellij IDEA for a commit that's been pushed, you must start with an interactive rebase first (like you would do from the command line of Git). In order to do the rebase, right click on your project -> "Git" menu item -> "Repository" -> "rebase..." (last menu item). Insert the SHA of the commit before the one you want to modify in the "Onto" field and click "Rebase". You will then get the interactive rebase prompt. Select "reword" in the action dropbox next to the commit(s) you want to modify and click the "Start rebasing" button (continued in next comment) – jplandrain Apr 11 '19 at 11:52
-
1(continued) You will then be presented a text prompt for every commit you want to modify. After the log messages are modified, you can apply further modifications (note that now the "reword" option is not greyed out anymore). When you have finished, you can then force push your modifications in order to conclude the interactive rebase. The whole process is actually exactly the same as in the answer of @Mureinik who's doing it from the command line instead. – jplandrain Apr 11 '19 at 11:52
-
Note: in IntelliJ, by default force push is disabled on protected branches, and "master" is the default protected branch. Check under "File" -> "Settings..." -> "Version Control" -> "Git" -> "Protected branches". – jplandrain Apr 11 '19 at 12:05
Premise:
if your git-graph looks like ...
O target-commit that you want to change its message [df9c192]
|
O parent-commit [b7ec061]
|
O
(df9c192 and b7ec061 are the commit hashes of target-commit and parent-commit, separately)
Solution:
you can just type the following instructions...
git reset --soft b7ec061
git commit -m "your_new_description"
git push -f
Explanation:
git reset --soft b7ec061will keep your changes of files and reset to parent-commit (i.e. b7ec061)git commit -m "..."will locally create a new commitgit push -fwill push your new commit to the server and replace the old one (i.e. df9c192)
- 151
- 1
- 3
-
1It changes only my last commit message. what if i want to change before last commit message? – Jigar Bhatt Nov 15 '19 at 06:10
-
Another option is to create an additional "errata commit" (and push) which references the commit object that contains the error -- the new errata commit also provides the correction. An errata commit is a commit with no substantive code changes but an important commit message -- for example, add one space character to your readme file and commit that change with the important commit message, or use the git option --allow-empty. It's certainly easier and safer than rebasing, it doesn't modify true history, and it keeps the branch tree clean (using amend is also a good choice if you are correcting the most recent commit, but an errata commit may be a good choice for older commits). This type of thing so rarely happens that simply documenting the mistake is good enough. In the future, if you need to search through a git log for a feature keyword, the original (erroneous) commit may not appear because the wrong keyword was used in that original commit (the original typo) -- however, the keyword will appear in the errata commit which will then point you to the original commit that had the typo. Here's an example:
$ git log
commit 0c28141c68adae276840f17ccd4766542c33cf1d
Author: First Last
Date: Wed Aug 8 15:55:52 2018 -0600
Errata commit:
This commit has no substantive code change.
THis commit is provided only to document a correction to a previous commit message.
This pertains to commit object e083a7abd8deb5776cb304fa13731a4182a24be1
Original incorrect commit message:
Changed background color to red
Correction (*change highlighted*):
Changed background color to *blue*
commit 032d0ff0601bff79bdef3c6f0a02ebfa061c4ad4
Author: First Last
Date: Wed Aug 8 15:43:16 2018 -0600
Some interim commit message
commit e083a7abd8deb5776cb304fa13731a4182a24be1
Author: First Last
Date: Wed Aug 8 13:31:32 2018 -0600
Changed background color to red
- 131
- 2
-
For sure it is safe, but a lot of text to read. I'd prefer rewriting the history :) – pkalinow May 09 '19 at 10:53
Answer of @Mureinik is good but not understandable by newbie.
First method:
- If you only want to edit latest commit message, then you only need
git commit --amend, you would see:
<your existing commit mesage foo bar>
# Please enter the commit message fir your changes. Lines starting
# with # will be ignored, and an empty message aborts the commit.
#
# Date: Sat Aug 24 17:56:16 2019 +0800
#
# On branch is up to date with 'origin/master'.
#
# changes to be committed:
# modified: foo.py
#
- As you can see, commit message on top without any prefix of command such as
pick, this is already the edit page and you can direct edit the top message and save&quit, e.g.:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Then do
git push -u origin master --forceor<how you push normally> --force. The key here is--force.
Second method:
You can see the commit hash by
git logor extract from the repository url, example in my case is881129d771219cfa29e6f6c2205851a2994a8835Then you can do
git rebase --interactive 881129d771219cfa29e6f6c2205851a2994a8835orgit rebase -i HEAD^(if the latest)You would see:
pick <commit hash> <your current commit message>
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
#
# Commands:
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
# x, exec = run command (the rest of the line) using shell
# d, drop = remove commit
#
# These lines can be re-ordered; they are executed from top to bottom.
#
# If you remove a line here THAT COMMIT WILL BE LOST.
#
# However, if you remove everything, the rebase will be aborted.
#
# Note that empty commits are commented out
- But if you see
noopthen you are probably typing wrong, e.g. if you dogit rebase -i 881129d771219cfa29e6f6c2205851a2994a88which missing^at the end, you better quit the editor without save and figure out the reason:
noop
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
...
- If no
noopissue, then simply change the wordpicktoreword, other just remains (you don't edit commit message at this point), e.g:
reword <commit hash> <your current commit message>
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
#
# Commands:
# p, pick = use commit
...
- Save&quit will see the edit page similar to method #1:
<your existing commit mesage foo bar>
# Please enter the commit message fir your changes. Lines starting
# with # will be ignored, and an empty message aborts the commit.
#
# Date: Sat Aug 24 17:56:16 2019 +0800
#
# interactive rebase in progress; onto b057371
# Last command done (1 command done):
# reword d996ffb <existing commit message foo bar>
# No commands remaining.
# You are currently editing a commit while rebasing branch 'master' on 'b057371'.
#
# changes to be committed:
# modified: foo.py
#
- Edit the message on top, same like method #1 and save&quit, e.g:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Again, same like method #1, do
git push -u origin master --forceor<how you push normally> --force. The key here is--force.
For more info please read the doc.
- 435
- 1
- 6
- 17
If one needs to edit an incorrect commit message in Git, one can use git commit --amend without making any changes to the index, Git still allows one to edit the commit message if one likes, or one can give the new message with the -m option such as
git commit --amend -m "COMMIT MESSAGE"
This still requires replacing the last commit, since the message text is part of the commit; the new commit will just have the same content (point to the same tree) as the previous one.
Here are GitHub's guidelines for changing a commit message
Important note
If you have included sensitive information in a commit message, force pushing a commit with an amended commit may not remove the original commit from GitHub. The old commit will not be a part of a subsequent clone; however, it may still be cached on GitHub and accessible via the commit ID. You must contact GitHub Support or GitHub Premium Support with the old commit ID to have it purged from the remote repository.
- 741
- 3
- 12
- 25