Antwort von @Mureinik ist gut, aber für Neulinge nicht verständlich.
Erste Methode:
- Wenn Sie nur die letzte Commit-Nachricht bearbeiten wollen, dann brauchen Sie nur
git commit --amend
, Sie würden sehen:
<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
#
- Wie Sie sehen können, steht die Commit-Nachricht oben ohne ein Präfix des Befehls wie
pick
, dies ist bereits die Bearbeitungsseite und Sie können direkt die oberste Nachricht bearbeiten und sichern&beenden, z.B.:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Dann machen Sie
git push -u origin master --force
oder <how you push normally> --force
. Der Schlüssel ist hier --force
.
Zweite Methode:
Sie können den Commit-Hash mit git log
sehen oder aus der Repository-URL extrahieren, in meinem Fall z.B. 881129d771219cfa29e6f6c2205851a2994a8835
Dann können Sie git rebase --interactive 881129d771219cfa29e6f6c2205851a2994a8835
oder git rebase -i HEAD^
(wenn die neueste)
Sie würden sehen:
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
- Wenn Sie aber
noop
sehen, dann haben Sie sich wahrscheinlich vertippt, z. B. wenn Sie git rebase -i 881129d771219cfa29e6f6c2205851a2994a88
machen, bei dem am Ende ^
fehlt, dann beenden Sie besser den Editor ohne zu speichern und finden Sie den Grund heraus:
noop
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
...
- Wenn kein
noop
Problem auftritt, dann ändern Sie einfach das Wort pick
in reword
, das andere bleibt einfach bestehen (Sie bearbeiten die Commit-Meldung an dieser Stelle nicht), z. z. B.:
reword <commit hash> <your current commit message>
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
#
# Commands:
# p, pick = use commit
...
- Save&quit zeigt die Bearbeitungsseite, ähnlich wie Methode #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
#
- Bearbeiten Sie die Nachricht oben, wie bei Methode #1 und save&quit, z. B.:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Wiederum, wie bei Methode #1, machen Sie
git push -u origin master --force
oder <how you push normally> --force
. Der Schlüssel ist hier --force
.
Für weitere Informationen lesen Sie bitte das Dokument .