The sixteenth batch
[git/gitster.git] / rerere.h
blobd4b5f7c932006a01647397d2741b273ae41c494e
1 #ifndef RERERE_H
2 #define RERERE_H
4 #include "gettext.h"
5 #include "string-list.h"
7 struct pathspec;
8 struct repository;
10 #define RERERE_AUTOUPDATE 01
11 #define RERERE_NOAUTOUPDATE 02
12 #define RERERE_READONLY 04
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.
19 extern void *RERERE_RESOLVED;
21 struct rerere_dir;
22 struct rerere_id {
23 struct rerere_dir *collection;
24 int variant;
27 int setup_rerere(struct repository *,struct string_list *, int);
28 int repo_rerere(struct repository *, int);
30 * Given the conflict ID and the name of a "file" used for replaying
31 * the recorded resolution (e.g. "preimage", "postimage"), return the
32 * path to that filesystem entity. With "file" specified with NULL,
33 * return the path to the directory that houses these files.
35 const char *rerere_path(struct strbuf *buf, const struct rerere_id *,
36 const char *file);
37 int rerere_forget(struct repository *, struct pathspec *);
38 int rerere_remaining(struct repository *, struct string_list *);
39 void rerere_clear(struct repository *, struct string_list *);
40 void rerere_gc(struct repository *, struct string_list *);
42 #define OPT_RERERE_AUTOUPDATE(v) OPT_UYN(0, "rerere-autoupdate", (v), \
43 N_("update the index with reused conflict resolution if possible"))
45 #endif