how to rename a pushed commit in git code example
Example 1: git amend last commit message
$ git commit --amend -m "New and correct message"
Example 2: change message from last pushed commit
git commit --amend
$ git commit --amend -m "New and correct message"
git commit --amend