git change commit message after push with commid id code example
Example 1: how to change a commit message after push
git commit --amend -m "New commit message"
Then
git push --force
and you're done
Example 2: git amend commit message after push
$ git commit --amend -m "New and correct message"