Re: [FIXED PATCH] Make rebase save ORIG_HEAD if changing current branch
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:44:54
Brian Gernhardt [off-list ref] writes:
This makes rebase act a little more like merge when working on the current branch. This is particularly useful for `git pull --rebase` Signed-off-by: Brian Gernhardt <redacted> --- ARG! This is what v3 was supposed to be. I should make sure I am sending in the correct patch.
Yeah, I was scratching my head about the discrepancy between the revision
comment and the patch in the previous one.
Having said that, thanks to updates to git-rebase, rebased_branch@{1} has
useful information these days, so I do not see much practical upside, even
though I _will_ apply this patch, just for the sake of consistency.
We would make it _appear_ rebase and merge are interchangeable even more.
But the thing is, I am not convinced if promoting that appearance is
necessarily a good thing.
You now do not have to say something like:
After a 'git pull' you can view 'git diff ORIG_HEAD..' to check
what are new, but 'git pull --rebase' is different and you would
say 'git diff branch@{1}.." instead.
and you can tell the users that ORIG_HEAD can be used in both cases.
But you cannot say the same thing with "gitk ORIG_HEAD..", for example.
The meaning of the topology and commits you would see would be quite
different. For rebase you will see your own commits that are carried
forward, and for merge you won't. Besides this example, there probably
are many fundamental differences between rebase and merge, and trying to
give a false impression that they are interchangeable may not add much
value to the end user experience, and it could even be harmful from
educational point of view.