Skip to content
  • Junio C Hamano's avatar
    Make "subtree" part more orthogonal to the rest of merge-recursive. · 85e51b78
    Junio C Hamano authored
    
    
    This makes "subtree" more orthogonal to the rest of recursive merge, so
    that you can use subtree and ours/theirs features at the same time.  For
    example, you can now say:
    
    	git merge -s subtree -Xtheirs other
    
    to merge with "other" branch while shifting it up or down to match the
    shape of the tree of the current branch, and resolving conflicts favoring
    the changes "other" branch made over changes made in the current branch.
    
    It also allows the prefix used to shift the trees to be specified using
    the "-Xsubtree=$prefix" option.  Giving an empty prefix tells the command
    to figure out how much to shift trees automatically as we have always
    done.  "merge -s subtree" is the same as "merge -s recursive -Xsubtree="
    (or "merge -s recursive -Xsubtree").
    
    Based on an old patch done back in the days when git-merge was a script;
    Avery ported the script part to builtin-merge.c.  Bugs in shift_tree()
    is mine.
    
    Signed-off-by: default avatarAvery Pennarun <apenwarr@gmail.com>
    Signed-off-by: default avatarJunio C Hamano <gitster@pobox.com>
    85e51b78