Resposta de @Mureinik é bom mas não é compreensível para os novatos.
Primeiro método:
- Se só quer editar a última mensagem de compromisso, então só precisa de
git commit --amend
, veria:
<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 pode ver, submeter mensagem no topo sem qualquer prefixo de comando como
pick
, esta já é a ** página de edição*** e pode dirigir editar a mensagem no topo e save&quit* , por exemplo
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Depois faça
git push -u origin master --force
ou <how you push normally> --force
. A chave aqui é --force
.
Segundo método:
Pode-se ver o hash de commit por git log
ou extracto da url do repositório, exemplo no meu caso é 881129d771219cfa29e6f6c2205851a2994a8835
Depois pode fazer git rebase --interactive 881129d771219cfa29e6f6c2205851a2994a8835
ou git rebase -i HEAD^
(se o mais recente)
Verá:
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
- Mas se vir
noop
então provavelmente está a escrever mal, por exemplo, se fizer git rebase -i 881129d771219cfa29e6f6c2205851a2994a88
que falta ^
no final, é melhor abandonar o editor sem guardar e descobrir o motivo:
noop
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
...
- Se não houver
noop
edição, então simplesmente mude a palavra pick
para reword
, outros apenas restam (não edita a mensagem de compromisso neste ponto), e. g:
reword <commit hash> <your current commit message>
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
#
# Commands:
# p, pick = use commit
...
- Save&quit verá a página edit semelhante ao 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 a mensagem por cima, tal como o método #1 e save&quit, por exemplo:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Mais uma vez, tal como o método #1, faça
git push -u origin master --force
ou <how you push normally> --force
. A chave aqui é --force
.
Para mais informações, por favor leia o doc .