how to fix typo in git commit message code example
Example 1: fix typo in 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>