Thread (3 messages) flat view 3 messages, 2 authors, 2016-06-15

Re: Automatically identifying the "split" point of a merged branch.

From: Conrad Irwin <hidden>
Date: 2016-06-15 22:51:41

On Sat, Jul 30, 2011 at 10:53 PM, Jeff King [off-list ref] wrote:
On Sat, Jul 30, 2011 at 05:54:59PM -0700, Conrad Irwin wrote:

If you know M, then B is the merge-base of M^1 and M^2 (i.e., the
parents of M). If you don't know M, but do know D, you can find it by
walking backwards from "integration" until you find a merge commit with
D as its second parent (e.g., by grepping "rev-list --parents").

Make sense?
Yup. git rev-list was definitely the tool I was missing, thank you :).

Conrad

merge=$(git rev-list --parents integration |\
                 grep " $(git rev-parse topic)" | cut -d' ' -f 1)
split=$(git merge-base $merge^ $merge^2)
git rebase --onto master $split
git checkout master
git merge --no-ff topic
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help