Jawaban @Mureinik bagus tapi tidak bisa dimengerti oleh pemula.
Metode pertama:
- Jika Anda hanya ingin mengedit pesan komit terbaru, maka Anda hanya perlu
git commit --amend
, Anda akan melihat:
<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
#
- Seperti yang Anda lihat, komit pesan di atas tanpa awalan perintah seperti
pick
, ini sudah menjadi halaman edit dan Anda dapat langsung mengedit pesan teratas dan menyimpan & keluar , mis .:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Lalu lakukan
git push -u origin master --force
atau <how you push normally> --force
. Kuncinya di sini adalah --force
.
Metode kedua:
Anda dapat melihat hash komit oleh git log
atau mengekstrak dari url repositori, contoh dalam kasus saya adalah881129d771219cfa29e6f6c2205851a2994a8835
Maka Anda dapat melakukan git rebase --interactive 881129d771219cfa29e6f6c2205851a2994a8835
atau git rebase -i HEAD^
(jika terbaru)
Anda akan melihat:
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
- Tetapi jika Anda melihat
noop
maka Anda mungkin salah mengetik, mis. Jika Anda melakukan git rebase -i 881129d771219cfa29e6f6c2205851a2994a88
yang hilang ^
pada akhirnya, Anda lebih baik keluar dari editor tanpa menyimpan dan mencari tahu alasannya:
noop
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
...
- Jika tidak ada
noop
masalah, maka cukup mengubah kata pick
untuk reword
, lain hanya tetap (Anda tidak mengedit pesan commit pada saat ini), misalnya:
reword <commit hash> <your current commit message>
# Rebase 8db7e8b..fa20af3 onto 8db7e8b
#
# Commands:
# p, pick = use commit
...
- Simpan & keluar akan melihat halaman edit mirip dengan metode # 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
#
- Edit pesan di atas, sama seperti metode # 1 dan simpan & keluar, misalnya:
<your new correction commit message>
# Please enter the commit message for your changes. Lines starting
....
- Sekali lagi, sama seperti metode # 1, lakukan
git push -u origin master --force
atau <how you push normally> --force
. Kuncinya di sini adalah --force
.
Untuk info lebih lanjut silakan baca dokumen .