ho wto change message of a commit code example
Example 1: change git commit message
git commit --amend -m "New commit message"
Example 2: change commit message after push
git push --force <repository> <branch>
git commit --amend -m "New commit message"
git push --force <repository> <branch>