Merge branch 'jc/checkout-detach-doc'
[alt-git.git] / rerere.h
blob4aa06c9a519aa289f177487b41e3f6c5b1213ef4
1 #ifndef RERERE_H
2 #define RERERE_H
4 #include "string-list.h"
6 struct pathspec;
8 #define RERERE_AUTOUPDATE 01
9 #define RERERE_NOAUTOUPDATE 02
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.
16 extern void *RERERE_RESOLVED;
18 extern int setup_rerere(struct string_list *, int);
19 extern int rerere(int);
20 extern const char *rerere_path(const char *hex, const char *file);
21 extern int rerere_forget(struct pathspec *);
22 extern int rerere_remaining(struct string_list *);
23 extern void rerere_clear(struct string_list *);
24 extern void rerere_gc(struct string_list *);
26 #define OPT_RERERE_AUTOUPDATE(v) OPT_UYN(0, "rerere-autoupdate", (v), \
27 "update the index with reused conflict resolution if possible")
29 #endif