diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-07-23 14:23:24 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-03-15 15:30:58 -0700 |
commit | a13d13700b05442855447670d7c3313f99f5da3c (patch) | |
tree | 32fdfbb202c496fc57b072810f436acad6f3d2cd /rerere.h | |
parent | c0a5423b6f09f0c08749697b8d2860f956e905e9 (diff) | |
download | git-a13d13700b05442855447670d7c3313f99f5da3c.tar.gz |
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.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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); |