On Mon, Jun 09, 2008 at 04:06:12PM -0700, Junio C Hamano wrote: > Miklos Vajna writes: > > > +struct commit_list *get_octopus_merge_bases(struct commit_list *in, int cleanup) > > +{ > > + struct commit_list *ret, *i; > > + > > + ret = merge_bases_many(in->item, in->next); > > + if (cleanup) > > + for(i = in; i; i = i->next) > > + clear_commit_marks(i->item, all_flags); > > + return ret; > > +} > > I suspect either me or you are confused, but how is this exactly used? > > The code for merge_bases_many(), at least the one I showed you a few days > ago, is not a replacement for "show-branch --merge-base", and I do not > think you would want to use it as such in the rewrite of git-merge, if you > are trying to replace this part of git-merge.sh: > > case "$#" in > 1) > common=$(git merge-base --all $head "$@") > ;; > *) > common=$(git show-branch --merge-base $head "$@") > ;; > esac Then I think I'm the one who is confused. My original get_octopus_merge_bases() - in commit e13c0c2 - was exactly to replace this part. So, may I assume that the original get_octopus_merge_bases() is OK for this purpose? > The purpose of merge-base-many code was to improve this line in the > git-merge-octopus.sh: > > common=$(git merge-base --all $MRC $SHA1) || > die "Unable to find common commit with $SHA1" > > Instead of keeping a single MRC, we can compute the merge-base-many > between the SHA1 (i.e. the one we are looking at right now -- it is fed as > "one") and all the previous SHA1's we have already looked at (they become > "two's"), like this: > > common($git merge-base-many $SHA1 $SHA1_SO_FAR) > > and you would have at the end of the loop: > > SHA1_SO_FAR="$SHA1_SO_FAR$SHA1 " > > or something. Actually I do not want to touch git-merge-octopus.sh before builtin-merge is not ready. (I try to "do one thing and do it well".) Thanks.