amend a commit after push code example
Example 1: change message from last pushed commit
git commit --amend
Example 2: change commit message after push
git push --force-with-lease <repository> <branch>
git commit --amend
git push --force-with-lease <repository> <branch>