aboutsummaryrefslogtreecommitdiffstats
path: root/read-tree.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-05 22:59:59 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-06-05 22:59:59 -0700
commite6ee623b7be2a59a3f3d1ff8c513d72b6f15344f (patch)
treed71ef3a9328c61023140729b9de1bb0cda0192f2 /read-tree.c
parent220a0b527bd6ecd30a9d6dfed22195c95e6f445a (diff)
downloadgit-e6ee623b7be2a59a3f3d1ff8c513d72b6f15344f.tar.gz
git-read-tree: fix up two-way merge
This is starting to look better.
Diffstat (limited to 'read-tree.c')
-rw-r--r--read-tree.c59
1 files changed, 44 insertions, 15 deletions
diff --git a/read-tree.c b/read-tree.c
index 1a575eb0d2..8c9ffe1232 100644
--- a/read-tree.c
+++ b/read-tree.c
@@ -181,6 +181,34 @@ static void trivially_merge_cache(struct cache_entry **src, int nr)
}
/*
+ * When we find a "stage2" entry in the two-way merge, that's
+ * the one that will remain. If we have an exact old match,
+ * we don't care whether the file is up-to-date or not, we just
+ * re-use the thing directly.
+ *
+ * If we didn't have an exact match, then we want to make sure
+ * that we've seen a stage1 that matched the old, and that the
+ * old file was up-to-date. Because it will be gone after this
+ * merge..
+ */
+static void twoway_check(struct cache_entry *old, int seen_stage1, struct cache_entry *ce)
+{
+ if (path_matches(old, ce)) {
+ /*
+ * This also removes the UPDATE flag on
+ * a match
+ */
+ if (same(old, ce)) {
+ *ce = *old;
+ return;
+ }
+ if (!seen_stage1)
+ reject_merge(old);
+ }
+ verify_uptodate(old);
+}
+
+/*
* Two-way merge.
*
* The rule is:
@@ -190,8 +218,8 @@ static void trivially_merge_cache(struct cache_entry **src, int nr)
*/
static void twoway_merge(struct cache_entry **src, int nr)
{
- static struct cache_entry null_entry;
- struct cache_entry *old = NULL, *stat = &null_entry;
+ int seen_stage1 = 0;
+ struct cache_entry *old = NULL;
struct cache_entry **dst = src;
while (nr--) {
@@ -203,7 +231,7 @@ static void twoway_merge(struct cache_entry **src, int nr)
if (old)
reject_merge(old);
old = ce;
- stat = ce;
+ seen_stage1 = 0;
active_nr--;
continue;
@@ -213,21 +241,13 @@ static void twoway_merge(struct cache_entry **src, int nr)
continue;
if (!path_matches(old, ce) || !same(old, ce))
reject_merge(old);
+ seen_stage1 = 1;
continue;
case 2:
ce->ce_flags |= htons(CE_UPDATE);
if (old) {
- if (!path_matches(old, ce))
- reject_merge(old);
- /*
- * This also removes the UPDATE flag on
- * a match
- */
- if (same(old, ce))
- *ce = *old;
- else
- verify_uptodate(old);
+ twoway_check(old, seen_stage1, ce);
old = NULL;
}
ce->ce_flags &= ~htons(CE_STAGEMASK);
@@ -236,8 +256,17 @@ static void twoway_merge(struct cache_entry **src, int nr)
}
die("impossible two-way stage");
}
- if (old)
- reject_merge(old);
+
+ /*
+ * Unmatched with a new entry? Make sure it was
+ * at least uptodate in the working directory _and_
+ * the original tree..
+ */
+ if (old) {
+ if (!seen_stage1)
+ reject_merge(old);
+ verify_uptodate(old);
+ }
}
static void merge_stat_info(struct cache_entry **src, int nr)