From: Andy Parkins <andyparkins@gmail.com>
To: git@vger.kernel.org
Subject: Rebasing a branch that contains merges
Date: Mon, 19 Feb 2007 09:12:22 +0000 [thread overview]
Message-ID: <200702190912.24067.andyparkins@gmail.com> (raw)
Hello,
I've done some little experiments with rebasing a branch with merges on it. I
wanted to check that what I found is what is intended.
I made a repository like this:
* -- * -- * (master)
|\
| A (branch1) -- M (merge)
\ /
B (branch2) --
It's a horribly unfair thing to do, but while on merge I did
git rebase master
I had been hoping that both branches would rebase, but only one did. I got:
* -- * -- * (master) -- B -- M (merge)
|\
| A (branch1)
\
B (branch2)
"M" effectively now contains all of branch1's changes. If I hadn't referenced
the merge head separately from the two branch heads, all the history in
branch1 would now be represented by "M".
I don't think this is the right result. Either
* git should refuse to rebase because it would lose history
* git should rebase both branches
The ideal result (perhaps unrealisticly) would have been
* -- * -- * (master)
|\
| A (branch1) -- M (merge)
\ /
B (branch2) --
This is an unreasonable thing to expect a version control system to be able to
do - it's a nasty, complicated wish. git is its own worst enemy for things
like this; it's getting to be so good at nasty unreasonable things that they
don't seem like fantasy-land wishes.
A perfectly valid answer is "don't be so ridiculous Andy, go away". :-)
Andy
--
Dr Andy Parkins, M Eng (hons), MIEE
andyparkins@gmail.com
next reply other threads:[~2007-02-19 9:12 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-02-19 9:12 Andy Parkins [this message]
2007-02-19 9:36 ` Rebasing a branch that contains merges Junio C Hamano
2007-02-19 10:48 ` Andy Parkins
2007-02-19 14:39 ` A.J. Rossini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=200702190912.24067.andyparkins@gmail.com \
--to=andyparkins@gmail.com \
--cc=git@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.