Re: git-bundle rev handling and de-duping

2014-10-17 Thread Junio C Hamano
"Philip Oakley" writes: >> # two branches point at the same object >> git branch foo master >> >> # the other side already has master. Let's send them foo. >> # this will fail because the bundle is empty. That's mildly >> # annoying because we really want to tell them "hey, update >> # your

Re: git-bundle rev handling and de-duping

2014-10-17 Thread Philip Oakley
From: "Jeff King" [subject tweaked as we have veered quite far off the original, and this might get more attention from interested people] On Thu, Oct 16, 2014 at 10:39:54AM -0700, Junio C Hamano wrote: 2. We use object_array_remove_duplicates() to de-dup "git bundle create x master ma

git-bundle rev handling and de-duping

2014-10-16 Thread Jeff King
[subject tweaked as we have veered quite far off the original, and this might get more attention from interested people] On Thu, Oct 16, 2014 at 10:39:54AM -0700, Junio C Hamano wrote: > 2. We use object_array_remove_duplicates() to de-dup "git bundle > create x master master", which came