Respuesta de @Mureinik ](https://superuser.com/a/751909/248836) es bueno pero no es comprensible para los novatos.
Primer método:
- Si sólo quieres editar el último mensaje de commit, entonces sólo necesitas
git commit --amend
, verías:
<your existing commit mesage foo bar>
# Please enter the commit message fir your changes. Lines starting
# with # will be ignored, and an empty message aborts the commit.
#
# Date: Sat Aug 24 17:56:16 2019 +0800
#
# On branch is up to date with 'origin/master'.
#
# changes to be committed:
# modified: foo.py
#
- Como puede ver, el mensaje de confirmación en la parte superior sin ningún prefijo de comando como
pick
, esto ya es la página de edición y puede dirigir editar el mensaje superior y guardar&salir , por ejemplo
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Luego haga
git push -u origin master --force
o <how you push normally> --force
. La clave aquí es --force
.
Segundo método:
Puedes ver el hash del commit mediante git log
o extraerlo de la url del repositorio, el ejemplo en mi caso es 881129d771219cfa29e6f6c2205851a2994a8835
Entonces puedes hacer git rebase --interactive 881129d771219cfa29e6f6c2205851a2994a8835
o git rebase -i HEAD^
(si es el último)
Verías:
pick <commit hash> <your current commit message>
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
#
# Commands:
# p, pick = use commit
# r, reword = use commit, but edit the commit message
# e, edit = use commit, but stop for amending
# s, squash = use commit, but meld into previous commit
# f, fixup = like "squash", but discard this commit's log message
# x, exec = run command (the rest of the line) using shell
# d, drop = remove commit
#
# These lines can be re-ordered; they are executed from top to bottom.
#
# If you remove a line here THAT COMMIT WILL BE LOST.
#
# However, if you remove everything, the rebase will be aborted.
#
# Note that empty commits are commented out
- Pero si ves
noop
entonces es probable que estés escribiendo mal, por ejemplo, si haces git rebase -i 881129d771219cfa29e6f6c2205851a2994a88
que falta ^
al final, es mejor que salgas del editor sin guardar y averigües la razón:
noop
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
...
- Si no hay problema con
noop
, entonces simplemente cambia la palabra pick
por reword
, lo demás sólo queda (no editas el mensaje de commit en este punto), e. g:
reword <commit hash> <your current commit message>
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
#
# Commands:
# p, pick = use commit
...
- Save&quit verá la página de edición similar al método #1:
<your existing commit mesage foo bar>
# Please enter the commit message fir your changes. Lines starting
# with # will be ignored, and an empty message aborts the commit.
#
# Date: Sat Aug 24 17:56:16 2019 +0800
#
# interactive rebase in progress; onto b057371
# Last command done (1 command done):
# reword d996ffb <existing commit message foo bar>
# No commands remaining.
# You are currently editing a commit while rebasing branch 'master' on 'b057371'.
#
# changes to be committed:
# modified: foo.py
#
- Edite el mensaje de arriba, igual que el método #1 y save&quit, e.g:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- De nuevo, igual que el método #1, haga
git push -u origin master --force
o <how you push normally> --force
. La clave aquí es --force
.
Para más información por favor lea el doc .