]> git.ipfire.org Git - thirdparty/git.git/blob - rerere.h
treewide: be explicit about dependence on gettext.h
[thirdparty/git.git] / rerere.h
1 #ifndef RERERE_H
2 #define RERERE_H
3
4 #include "gettext.h"
5 #include "string-list.h"
6
7 struct pathspec;
8 struct repository;
9
10 #define RERERE_AUTOUPDATE 01
11 #define RERERE_NOAUTOUPDATE 02
12 #define RERERE_READONLY 04
13
14 /*
15 * Marks paths that have been hand-resolved and added to the
16 * index. Set in the util field of such paths after calling
17 * rerere_remaining.
18 */
19 extern void *RERERE_RESOLVED;
20
21 struct rerere_dir;
22 struct rerere_id {
23 struct rerere_dir *collection;
24 int variant;
25 };
26
27 int setup_rerere(struct repository *,struct string_list *, int);
28 #ifndef NO_THE_REPOSITORY_COMPATIBILITY_MACROS
29 #define rerere(flags) repo_rerere(the_repository, flags)
30 #endif
31 int repo_rerere(struct repository *, int);
32 /*
33 * Given the conflict ID and the name of a "file" used for replaying
34 * the recorded resolution (e.g. "preimage", "postimage"), return the
35 * path to that filesystem entity. With "file" specified with NULL,
36 * return the path to the directory that houses these files.
37 */
38 const char *rerere_path(const struct rerere_id *, const char *file);
39 int rerere_forget(struct repository *, struct pathspec *);
40 int rerere_remaining(struct repository *, struct string_list *);
41 void rerere_clear(struct repository *, struct string_list *);
42 void rerere_gc(struct repository *, struct string_list *);
43
44 #define OPT_RERERE_AUTOUPDATE(v) OPT_UYN(0, "rerere-autoupdate", (v), \
45 N_("update the index with reused conflict resolution if possible"))
46
47 #endif