La respuesta de @Mureinik es buena pero no comprensible para los novatos.
Primer método:
- Si solo desea editar el último mensaje de confirmación, entonces solo necesita
git commit --amend
, verá:
<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, confirme el mensaje en la parte superior sin ningún prefijo de comando como
pick
, esta ya es la página de edición y puede editar directamente el mensaje superior y guardar y salir , por ejemplo:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- A continuación, realice
git push -u origin master --force
o <how you push normally> --force
. La clave aquí es --force
.
Segundo método:
Puede ver el hash de confirmación git log
o extraer de la url del repositorio, el ejemplo en mi caso es881129d771219cfa29e6f6c2205851a2994a8835
Entonces puedes hacer git rebase --interactive 881129d771219cfa29e6f6c2205851a2994a8835
o git rebase -i HEAD^
(si es lo último)
Tu verias:
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 ve,
noop
entonces probablemente esté escribiendo mal, por ejemplo, si al final le git rebase -i 881129d771219cfa29e6f6c2205851a2994a88
falta ^
, es mejor que salga del editor sin guardar y descubra la razón:
noop
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
...
- Si no hay
noop
problema, simplemente cambie la palabra pick
a reword
, solo queda otra (no edita el mensaje de confirmación en este momento), por ejemplo:
reword <commit hash> <your current commit message>
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
#
# Commands:
# p, pick = use commit
...
- Guardar y salir 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 en la parte superior, igual que el método # 1 y guarde y salga, por ejemplo:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- De nuevo, igual que el método # 1, do
git push -u origin master --force
o <how you push normally> --force
. La clave aquí es --force
.
Para obtener más información, lea el documento .