Odpowiedź @Mureinik ](https://superuser.com/a/751909/248836) jest dobre, ale niezrozumiałe dla początkujących.
Pierwsza metoda:
- Jeśli chcesz edytować tylko najnowszą wiadomość commit, potrzebujesz tylko
git commit --amend
, zobaczysz:
<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
#
- Jak widzisz, commit message na górze bez żadnego przedrostka polecenia, takiego jak
pick
, to jest już edit page i możesz kierować edit the top message i save&quit , np:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Następnie wykonaj
git push -u origin master --force
lub <how you push normally> --force
. Kluczem jest tutaj --force
.
Druga metoda:
Możesz zobaczyć commit hash przez git log
lub wyodrębnić z adresu url repozytorium, przykład w moim przypadku to 881129d771219cfa29e6f6c2205851a2994a8835
Następnie możesz zrobić git rebase --interactive 881129d771219cfa29e6f6c2205851a2994a8835
lub git rebase -i HEAD^
(jeśli najnowszy)
Zobaczyłbyś:
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
- Ale jeśli zobaczysz
noop
to prawdopodobnie źle wpisujesz, np. jeśli zrobisz git rebase -i 881129d771219cfa29e6f6c2205851a2994a88
, w którym brakuje ^
na końcu, to lepiej wyjdź z edytora bez zapisywania i znajdź przyczynę:
noop
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
...
- Jeśli nie ma problemu z
noop
, to po prostu zmień słowo pick
na reword
, inne po prostu pozostają (nie edytujesz komunikatu commit w tym momencie), np. g:
reword <commit hash> <your current commit message>
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
#
# Commands:
# p, pick = use commit
...
- Po zapisaniu i zamknięciu pojawi się edit page podobny do tego z metody #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
#
- Edytuj wiadomość na górze, tak samo jak w metodzie #1 i zapisz i zakończ, np:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Ponownie, tak samo jak w metodzie #1, zrób
git push -u origin master --force
lub <how you push normally> --force
. Kluczem jest tutaj --force
.
Dla więcej informacji przeczytaj the doc .