Skip to content

Commit ebc7187

Browse files
committed
TO-DROP
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent f1c88df commit ebc7187

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

replay.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -569,6 +569,7 @@ error("%s:%d: REPLAYED %s as %s", __FILE__, __LINE__, oid_to_hex(&parent2->objec
569569
result->clean = remerge_res.clean;
570570
goto out;
571571
}
572+
error("%s:%d: R: %s", __FILE__, __LINE__, oid_to_hex(&remerge_res.tree->object.oid));
572573

573574
/* N: fresh merge of the (possibly rewritten) parents. */
574575
init_basic_merge_options(&new_merge_opt, repo);
@@ -584,6 +585,7 @@ error("%s:%d: REPLAYED %s as %s", __FILE__, __LINE__, oid_to_hex(&parent2->objec
584585
result->clean = new_merge_res.clean;
585586
goto out;
586587
}
588+
error("%s:%d: N: %s", __FILE__, __LINE__, oid_to_hex(&new_merge_res.tree->object.oid));
587589

588590
/*
589591
* Outer non-recursive merge: base=R, side1=O (pickme), side2=N.
@@ -613,6 +615,7 @@ error("%s:%d: REPLAYED %s as %s", __FILE__, __LINE__, oid_to_hex(&parent2->objec
613615
merge_opt->in_replay_side2_intervals = saved_side2_in;
614616
if (!result->clean)
615617
goto out;
618+
error("%s:%d: R/O/N: %s", __FILE__, __LINE__, oid_to_hex(&result->tree->object.oid));
616619

617620
parents = NULL;
618621
commit_list_insert(replayed_parent2, &parents);

0 commit comments

Comments
 (0)