git commit --amend -m "New commit message."
Copy
git commit --amend -m "New commit message"
git checkout branch_name
git commit --amend -m "Modified message"
# if previous commit is not pushed yet
git push
# or if previous comment was pushed in a previous commit:
git push --force-with-lease branch_name
git commit --amend
// press enter, editor would open
git commit --amend -m "New commit message for most recent commit"
git commit --amend -m "New message"
git commit --amend -m 'commit message'
git commit --amend -m "changing commit message"
git commit --amend
git push --force-with-lease <repository> <branch>
# N: number of comits to rebase
git rebase -i HEAD~N