rename commit message after push github code example
Example 1: amend last commit message
$ git commit --amend -m "New and correct message"
Example 2: change commit message after push
git push --force-with-lease <repository> <branch>
$ git commit --amend -m "New and correct message"
git push --force-with-lease <repository> <branch>