Risposta di @Mureinik è buono ma non comprensibile per i principianti.
Primo metodo:
- Se vuoi solo modificare l'ultimo messaggio di commit, allora ti basta
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 potete vedere, il messaggio di commit in alto senza alcun prefisso di comando come
pick
, questa è già la pagina di modifica e potete dirigere modificare il messaggio in alto e salvare e uscire, per esempio:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Poi fai
git push -u origin master --force
o <how you push normally> --force
. La chiave qui è --force
.
Secondo metodo:
Puoi vedere l'hash di commit da git log
o estrarre dall'url del repository, esempio nel mio caso è 881129d771219cfa29e6f6c2205851a2994a8835
Poi 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
allora probabilmente stai scrivendo male, ad esempio se fai git rebase -i 881129d771219cfa29e6f6c2205851a2994a88
a cui manca ^
alla fine, ti conviene uscire dall'editor senza salvare e capire la ragione:
noop
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
...
- Se non c'è un problema di
noop
, allora cambia semplicemente la parola pick
con reword
, le altre rimangono (non si modifica il messaggio di commit a questo punto), ad es. g:
reword <commit hash> <your current commit message>
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
#
# Commands:
# p, pick = use commit
...
- Save&quit vedrà la pagina di commit simile al metodo #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 cima, come il metodo #1 e save&quit, ad esempio:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Ancora, come il metodo #1, fai
git push -u origin master --force
o <how you push normally> --force
. La chiave qui è --force
.
Per maggiori informazioni leggi il documento .