現在、私が見つけた最良の解決策は
git reset --soft HEAD^2
必要な変更を保持する
git reset --mixed HEAD^
不要なコミットを殺す
残念ながら、消したいコミットの後に行われたコミットを再作成する必要があります
現在、私が見つけた最良の解決策は
git reset --soft HEAD^2
必要な変更を保持する
git reset --mixed HEAD^
不要なコミットを殺す
残念ながら、消したいコミットの後に行われたコミットを再作成する必要があります
試すgit rebase -i <target commit>^
次に、リベースするコミットのリストが表示されたら、削除するコミットの行を削除します。
たとえば、私が持っている場合:
6e99176 most recent commit
60dd2f0 older commit
4c82808 even older commit
b980abe commit i want to remove
5b7254b oldest commit
できます
git rebase -i b980abe^
そして、提示されます:
pick 6e99176 most recent commit
pick 60dd2f0 older commit
pick 4c82808 even older commit
pick b980abe commit i want to remove
# Rebase 50ce3f5..9ad75f8 onto 50ce3f5
#
# 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
#
# If you remove a line here THAT COMMIT WILL BE LOST.
# However, if you remove everything, the rebase will be aborted.
#
指示に従い、問題のあるコミットを削除してから、ファイルを保存して閉じると、そのコミットがgit履歴から削除されます。