merge-recursive: New data structures for deferring of D/F conflicts
commit25c3936349ba052f0c7e9ba3ce138b89abcae6ee
authorElijah Newren <newren@gmail.com>
Mon, 20 Sep 2010 08:28:53 +0000 (20 02:28 -0600)
committerJunio C Hamano <gitster@pobox.com>
Thu, 30 Sep 2010 00:32:38 +0000 (29 17:32 -0700)
treecad69035537f824eaa339ad86478fde14986e27c
parent0c4918d1c1722c1faaa909f3f8486d5a0d816538
merge-recursive: New data structures for deferring of D/F conflicts

Since we need to resolve paths (including renames) in-core first and defer
checking of D/F conflicts (namely waiting to see if directories are still
in the way after all paths are resolved) before updating files involved in
D/F conflicts, we will need to first process_renames, then record some
information about the rename needed at D/F resolution time, and then make
use of that information when resolving D/F conflicts at the end.

This commit adds some relevant data structures for storing the necessary
information.

Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
merge-recursive.c