Amending the most recent git commit message

git commit --amend
will open your editor, allowing you to change the commit message of the most recent commit. 

If your commit message is short, you can set the commit message directly in the command line with:

git commit --amend -m "New commit message"

Comments