Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-07-24 00:23:24 +0300
committerJunio C Hamano <gitster@pobox.com>2016-03-16 01:30:58 +0300
commita13d13700b05442855447670d7c3313f99f5da3c (patch)
tree32fdfbb202c496fc57b072810f436acad6f3d2cd /rerere.h
parentc0a5423b6f09f0c08749697b8d2860f956e905e9 (diff)
rerere: allow multiple variants to exist
The shape of the conflict in a path determines the conflict ID. The preimage and postimage pair that was recorded for the conflict ID previously may or may not replay well for the conflict we just saw. Currently, we punt when the previous resolution does not cleanly replay, but ideally we should then be able to record the currently conflicted path by assigning a new 'variant', and then record the resolution the user is going to make. Introduce a mechanism to have more than one variant for a given conflict ID; we do not actually assign any variant other than 0th variant yet at this step. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'rerere.h')
-rw-r--r--rerere.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/rerere.h b/rerere.h
index faf5a2308d..64d38d9704 100644
--- a/rerere.h
+++ b/rerere.h
@@ -18,6 +18,7 @@ extern void *RERERE_RESOLVED;
struct rerere_dir;
struct rerere_id {
struct rerere_dir *collection;
+ int variant;
};
extern int setup_rerere(struct string_list *, int);