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.
feedback
|
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:
but can be used to amend a merge commit. | |||||||||||||||||||||
feedback
|
| |||||||||||||||||||||
feedback
|
|
If the commit you want to fix isn’t the most recent one:
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 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? | |||||||||||||||||||||
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 | |||
|
feedback
|
|
A plain
will run your editor and load the previous commit message. All you have to do is edit it and save. | |||
|
feedback
|
|
As already mentioned,
| |||
|
feedback
|