La risposta di @Mureinik è buona ma non comprensibile per i principianti.
Primo metodo:
- Se vuoi solo modificare l'ultimo messaggio di commit, allora hai solo bisogno
git commit --amend
, vedresti:
<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
#
- Come puoi vedere, esegui il commit del messaggio in alto senza alcun prefisso di comando come
pick
, questa è già la pagina di modifica e puoi direttamente modificare il messaggio in alto e salvare ed uscire , ad esempio:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Quindi fare
git push -u origin master --force
o <how you push normally> --force
. La chiave qui è --force
.
Secondo metodo:
Puoi vedere l'hash di commit git log
o estrarre dall'URL del repository, ad esempio nel mio caso881129d771219cfa29e6f6c2205851a2994a8835
Quindi puoi fare git rebase --interactive 881129d771219cfa29e6f6c2205851a2994a8835
o git rebase -i HEAD^
(se l'ultimo)
Vedresti:
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
- Ma se vedi
noop
che probabilmente stai scrivendo male, ad esempio se fai ciò git rebase -i 881129d771219cfa29e6f6c2205851a2994a88
che manca ^
alla fine, è meglio chiudere l'editor senza salvare e capire il motivo:
noop
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
...
- Se non ci sono
noop
problemi, cambia semplicemente la parola pick
in reword
, altro rimane (non modifichi il messaggio di commit a questo punto), ad esempio:
reword <commit hash> <your current commit message>
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
#
# Commands:
# p, pick = use commit
...
- Salva ed esci vedrà la pagina di modifica simile al metodo n. 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
#
- Modifica il messaggio in alto, come il metodo n. 1 e salva ed esci, ad esempio:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Ancora una volta, come il metodo n. 1, do
git push -u origin master --force
or <how you push normally> --force
. La chiave qui è --force
.
Per maggiori informazioni leggi il documento .