I stupidly did a git commit while half asleep, and wrote totally the wrong thing in the commit message, How do I change the commit message? I have not yet pushed the commit to anyone
feedback
|
| |||||||||||||||||||
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
|
|
As already mentioned,
| |||
|
feedback
|
|
The simplest way to just change the commit messages it to type
Which will recommit the most recent commit, re-opening the edit message in your editor of choce for you to change as you want | |||||||||||||||
feedback
|