git change old commit message after push code example
Example 1: git amend commit message after push
$ 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