I stupidly aborted a forgotten rebase with commits and uncommitted changes both on top of it, so it blew everything away, similar to questions like this.
I know about the reflog and immediately went to look in there, however it contained only a single hash of a non-useful pre-rebase state. What is going on? How can I lose reflog entries?
EDIT: in response to @kan below, here's roughly what I did:
git checkout badbranch
git rebase master
# CONFLICT, realized branch was bad and not needed anymore, but did not rebase --abort!
git branch -D badbranch
git checkout goodbranch
# some commits and edits here
git commit -av
# notices "you are currently rebasing" in the commit message
git rebase --abort # DOH
git reflog
The reflog only contains a8f06a6 HEAD@{2}: rebase: updating HEAD
now
This should be clearer with Git 2.39 (Q4 2022):
See commit 9a1925b, commit 6159e7a, commit be0d29d, commit 33f2b61, commit 1f2d5dc, commit da1d633, commit 4e5e1b4, commit 57a1498 (12 Oct 2022) by Phillip Wood (
phillipwood
).See commit a524c62 (17 Oct 2022) by Junio C Hamano (
gitster
).(Merged by Taylor Blau --
ttaylorr
-- in commit 8851c4b, 30 Oct 2022)So
git reflog
should be of better help in your case, starting with Git 2.39 (Q4 2022).Also, still with Git 2.39 (Q4 2022), avoid setting
GIT_REFLOG_ACTION
to improve readability of the sequencer internals.See commit 0e34efb, commit d188a60 (09 Nov 2022) by Phillip Wood (
phillipwood
).(Merged by Junio C Hamano --
gitster
-- in commit ff84d03, 23 Nov 2022)