I want to drop a certain commit completely.
I did this experiment:
Init a repo
bash-3.2$ git init
Initialized empty Git repository in /Users/*****/test/.git/
create a file
bash-3.2$ touch readme
bash-3.2$ ls
readme
commit this creation
bash-3.2$ git add .
bash-3.2$ git commit -m "first commit"
[master (root-commit) b9f8e60] first commit
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100644 readme
edit that file (some mistake happened)
bash-3.2$ echo WrongMsg > readme
bash-3.2$ cat readme
WrongMsg
carelessly commit that modification
bash-3.2$ git add .
bash-3.2$ git commit -m "careless commit"
[master 1eec681] careless commit
1 file changed, 1 insertion(+)
check the log
bash-3.2$ git log --oneline
will give
1eec681 careless commit
b9f8e60 first commit
Now, I recognized that mistake and want to fix it
bash-3.2$ git rebase -i HEAD^
will prompt
pick 1eec681 careless commit
# Rebase b9f8e60..1eec681 onto b9f8e60 (1 command)
#
# 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
change pick
to drop
and then :wq
to save, then it will output
Successfully rebased and updated refs/heads/master.
check the log
bash-3.2$ git log --oneline
b9f8e60 first commit
correct the mistake
bash-3.2$ echo CorrectMsg > readme
bash-3.2$ cat readme
CorrectMsg
commit
bash-3.2$ git add .
bash-3.2$ git commit -m "correction"
[master f224289] correction
1 file changed, 1 insertion(+)
log
bash-3.2$ git log --oneline
f224289 correction
b9f8e60 first commit
It seems that drop is succeed, but if I execute this:
bash-3.2$ git reset --hard 1eec681
HEAD is now at 1eec681 careless commit
bash-3.2$ git log --oneline
1eec681 careless commit
b9f8e60 first commit
BANG, the history is still somewhere in the repo and it doesn't really get erased.
Can I erase this history completely?