Re: git rebase -i and the reflog
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:48:13
Sverre Rabbelier [off-list ref] writes:
I use "git rebase -i" a lot, and as a result the output from 'git log
-g' and 'git reflog' is a tad messy. That is, it's (afaik) not
possible to check that after my rebasing did not mess things up using
something like 'git diff HEAD@{1}'.
Yes and no. I too suffer from it but only when I rebase a detached HEAD
state. If you rebased a topic, "git diff topic@{1}" (or "git diff @{1}")
would give you what you want.