You are here

Amending the most recent commit message

git commit --amend

Will open your editor, allowing you to change the commit message of the most recent commit.
Additionally, you can set the commit message directly in the command line with:

git commit --amend -m "New commit message"
code type: