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
|
12
|
|||||
|
|
|
git commit --amend
|
||
|
|
|
|
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 |
||
|
|
|
|
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 |
||||||
|
