]> git.ipfire.org Git - thirdparty/git.git/blame - rerere.h
rerere: delay the recording of preimage
[thirdparty/git.git] / rerere.h
CommitLineData
5b2fd956
SB
1#ifndef RERERE_H
2#define RERERE_H
3
c455c87c 4#include "string-list.h"
5b2fd956 5
01a10b0a
NTND
6struct pathspec;
7
cb6020bb
JH
8#define RERERE_AUTOUPDATE 01
9#define RERERE_NOAUTOUPDATE 02
10
ac49f5ca
MZ
11/*
12 * Marks paths that have been hand-resolved and added to the
13 * index. Set in the util field of such paths after calling
14 * rerere_remaining.
15 */
16extern void *RERERE_RESOLVED;
17
1869bbe1 18struct rerere_dir;
1d51eced 19struct rerere_id {
1869bbe1 20 struct rerere_dir *collection;
1d51eced
JH
21};
22
cb6020bb
JH
23extern int setup_rerere(struct string_list *, int);
24extern int rerere(int);
1d51eced
JH
25/*
26 * Given the conflict ID and the name of a "file" used for replaying
27 * the recorded resolution (e.g. "preimage", "postimage"), return the
28 * path to that filesystem entity. With "file" specified with NULL,
29 * return the path to the directory that houses these files.
30 */
31extern const char *rerere_path(const struct rerere_id *, const char *file);
01a10b0a 32extern int rerere_forget(struct pathspec *);
ac49f5ca 33extern int rerere_remaining(struct string_list *);
0f891e7d
JH
34extern void rerere_clear(struct string_list *);
35extern void rerere_gc(struct string_list *);
5b2fd956 36
cb6020bb 37#define OPT_RERERE_AUTOUPDATE(v) OPT_UYN(0, "rerere-autoupdate", (v), \
3424a022 38 N_("update the index with reused conflict resolution if possible"))
cb6020bb 39
5b2fd956 40#endif