1#ifndef RERERE_H2#define RERERE_H34#include "string-list.h"56struct pathspec;78#define RERERE_AUTOUPDATE 019#define RERERE_NOAUTOUPDATE 0210#define RERERE_READONLY 041112/*13* Marks paths that have been hand-resolved and added to the14* index. Set in the util field of such paths after calling15* rerere_remaining.16*/17extern void *RERERE_RESOLVED;1819struct rerere_id {20char hex[41];21};2223extern int setup_rerere(struct string_list *, int);24extern int rerere(int);25/*26* Given the conflict ID and the name of a "file" used for replaying27* the recorded resolution (e.g. "preimage", "postimage"), return the28* 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);32extern int rerere_forget(struct pathspec *);33extern int rerere_remaining(struct string_list *);34extern void rerere_clear(struct string_list *);35extern void rerere_gc(struct string_list *);3637#define OPT_RERERE_AUTOUPDATE(v) OPT_UYN(0, "rerere-autoupdate", (v), \38N_("update the index with reused conflict resolution if possible"))3940#endif