3 # Copyright (c) 2005 Junio C Hamano
5 # Resolve two or more trees.
11 # The first parameters up to -- are merge bases; the rest are heads.
12 bases= head= remotes= sep_seen=
15 case ",$sep_seen,$head,$arg," in
23 remotes="$remotes$arg "
31 # Reject if this is not an Octopus -- resolve should be used instead.
39 # MRC is the current "merge reference commit"
40 # MRT is the current "merge result tree"
42 MRC=$head MSG= PARENT="-p $head"
44 CNT=1 ;# counting our head
48 common=$(git-merge-base --all $MRC $SHA1) ||
49 die "Unable to find common commit with $SHA1"
53 die "Not trivially mergeable."
56 echo "Already up-to-date with $SHA1"
62 PARENT="$PARENT -p $SHA1"
64 if test "$common,$NON_FF_MERGE" = "$MRC,0"
66 # The first head being merged was a fast-forward.
67 # Advance MRC to the head being merged, and use that
68 # tree as the intermediate result of the merge.
69 # We still need to count this as part of the parent set.
71 echo "Fast forwarding to: $SHA1"
72 git-read-tree -u -m $head $SHA1 || exit
73 MRC=$SHA1 MRT=$(git-write-tree)
79 echo "Trying simple merge with $SHA1"
80 git-read-tree -u -m $common $MRT $SHA1 || exit 2
81 next=$(git-write-tree 2>/dev/null)
84 echo "Simple merge did not work, trying automatic merge."
85 git-merge-index -o git-merge-one-file -a ||
86 exit 2 ; # Automatic merge failed; should not be doing Octopus
87 next=$(git-write-tree 2>/dev/null)
90 # We have merged the other branch successfully. Ideally
91 # we could implement OR'ed heads in merge-base, and keep
92 # a list of commits we have merged so far in MRC to feed
93 # them to merge-base, but we approximate it by keep using
94 # the current MRC. We used to update it to $common, which
95 # was incorrectly doing AND'ed merge-base here, which was