amend last commit code example
Example 1: amend last commit message
$ git commit --amend -m "New and correct message"
Example 2: git amend last commit message
$ git commit --amend -m "New and correct message"
Example 3: git amend
git commit --amend
Example 4: amend commit
git commit --amend -m "an updated commit message"
Example 5: change commit message after push
git push --force <repository> <branch>
Example 6: change commit message after push
git push --force-with-lease <repository> <branch>