how to change a commit message code example
Example 1: change git commit message
git commit --amend -m "New commit message"
Example 2: edit last commit message
git commit --amend -m "New commit message."
Example 3: how to change a commit message after push
git commit --amend -m "New commit message"
Then
git push --force
and you're done
Example 4: change message from last pushed commit
git commit --amend
Example 5: change commit message
git commit --amend
// press enter, editor would open
Example 6: how to change a commit message
git commit --amend
git push --force-with-lease <repository> <branch>