@Mureinik'in cevabı iyi ama acemi tarafından anlaşılmaz.
İlk yöntem:
- Yalnızca en son taahhüt mesajını düzenlemek istiyorsanız, yalnızca ihtiyacınız
git commit --amend
olanı göreceksiniz:
<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
#
- Gördüğünüz gibi
pick
, bu zaten bir düzenleme sayfası olduğu gibi herhangi bir komut öneki olmadan en üste mesaj gönder, en üstteki mesajı doğrudan düzenleyebilir ve kaydedebilir ve çıkabilirsiniz , örneğin:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Sonra
git push -u origin master --force
ya da <how you push normally> --force
. Buradaki anahtar --force
.
İkinci yöntem:
Taahhüt karmasını git log
depo URL'sinden görebilir veya ayıklayabilirsiniz, benim durumumdaki örnek881129d771219cfa29e6f6c2205851a2994a8835
Sonra yapabilirsiniz git rebase --interactive 881129d771219cfa29e6f6c2205851a2994a8835
veya git rebase -i HEAD^
(en son eğer)
Göreceksin:
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
- Ama eğer görürseniz
noop
o zaman muhtemelen yanlış yazıyorsunuzdur, örneğin sonunda git rebase -i 881129d771219cfa29e6f6c2205851a2994a88
hangi eksikliği ^
yaparsanız, kaydetmeden editörden çıkıp nedenini çözmeniz daha iyi olur:
noop
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
...
- Hayır ise
noop
konuyla yapın, sonra sözcüğü değiştirmek pick
için reword
(bu noktada mesajı taahhüt düzenlemezseniz) diğeri sadece kalır, örneğin:
reword <commit hash> <your current commit message>
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
#
# Commands:
# p, pick = use commit
...
- Kaydet ve çık, düzenleme sayfasını # 1 yöntemine benzer bir şekilde görecektir :
<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
#
- İletiyi, # 1 yöntemi ile aynı şekilde düzenleyin ve kaydedin ve çıkın, örneğin:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Yine, aynı yöntem # 1, aynı
git push -u origin master --force
veya yapın <how you push normally> --force
. Buradaki anahtar --force
.
Daha fazla bilgi için lütfen dokümanı okuyun .