how to edit old commit message in git code example
Example 1: change git commit message
git commit --amend -m "New commit message"
Example 2: change commit message
git commit --amend
// press enter, editor would open
Example 3: how to edit old commit message in git
# Displays a list of the last 3 commits on the current branch
$ git rebase -i HEAD~3