Make 'unpack_trees()' have a separate source and destination index
commit34110cd4e394e3f92c01a4709689b384c34645d8
authorLinus Torvalds <torvalds@linux-foundation.org>
Fri, 7 Mar 2008 02:12:28 +0000 (6 18:12 -0800)
committerJunio C Hamano <gitster@pobox.com>
Sun, 9 Mar 2008 09:03:38 +0000 (9 01:03 -0800)
treeb98563eacd52df16ad3efec092ef8160b7873521
parentbc052d7f435f8f729127cc4790484865c1a974b9
Make 'unpack_trees()' have a separate source and destination index

We will always unpack into our own internal index, but we will take the
source from wherever specified, and we will optionally write the result
to a specified index (optionally, because not everybody even _wants_ any
result: the index diffing really wants to just walk the tree and index
in parallel).

This ends up removing a fair number more lines than it adds, for the
simple reason that we can now skip all the crud that tried to be
oh-so-careful about maintaining our position in the index as we were
traversing and modifying it.  Since we don't actually modify the source
index any more, we can just update the 'o->pos' pointer without worrying
about whether an index entry got removed or replaced or added to.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-checkout.c
builtin-commit.c
builtin-merge-recursive.c
builtin-read-tree.c
diff-lib.c
t/t1005-read-tree-reset.sh
unpack-trees.c
unpack-trees.h