Michael Haggerty writes:
>> The only caller of remove-duplicates is bundle.c, which gets many
>> starting points and end points from the command line and tries to be
>> nice by removing obvious duplicates, e.g.
>>
>> git bundle create t.bundle master master
>>
>> but I think its logic of d
On 05/29/2013 06:18 PM, Junio C Hamano wrote:
> Michael Haggerty writes:
>
>> The old version copied one entry to its destination position, then
>> deleted any matching entries from the tail of the array. This
>> required the tail of the array to be copied multiple times. It didn't
>> affect th
Michael Haggerty writes:
> The old version copied one entry to its destination position, then
> deleted any matching entries from the tail of the array. This
> required the tail of the array to be copied multiple times. It didn't
> affect the complexity of the algorithm because the whole tail h
The old version copied one entry to its destination position, then
deleted any matching entries from the tail of the array. This
required the tail of the array to be copied multiple times. It didn't
affect the complexity of the algorithm because the whole tail has to
be searched through anyway.
4 matches
Mail list logo