La función de este comando, es la de modificar un commit anterior sin la necesidad de crear uno nuevo, por ejemplo:
git status
Untracked files:
(use “git add <file>…” to include in what will be committed)
file.html
no changes added to commit (use “git add” and/or “git commit -a”)
git add file.html
git commit --amend
git status
On branch main
nothing to commit, working tree clean.