2008-07-09 16:58:57 +04:00
|
|
|
#ifndef RERERE_H
|
|
|
|
#define RERERE_H
|
|
|
|
|
2008-07-21 22:03:49 +04:00
|
|
|
#include "string-list.h"
|
2008-07-09 16:58:57 +04:00
|
|
|
|
2009-12-04 11:20:48 +03:00
|
|
|
#define RERERE_AUTOUPDATE 01
|
|
|
|
#define RERERE_NOAUTOUPDATE 02
|
|
|
|
|
|
|
|
extern int setup_rerere(struct string_list *, int);
|
|
|
|
extern int rerere(int);
|
2009-02-15 01:21:04 +03:00
|
|
|
extern const char *rerere_path(const char *hex, const char *file);
|
|
|
|
extern int has_rerere_resolution(const char *hex);
|
2009-12-26 02:51:32 +03:00
|
|
|
extern int rerere_forget(const char **);
|
2008-07-09 16:58:57 +04:00
|
|
|
|
2009-12-04 11:20:48 +03:00
|
|
|
#define OPT_RERERE_AUTOUPDATE(v) OPT_UYN(0, "rerere-autoupdate", (v), \
|
|
|
|
"update the index with reused conflict resolution if possible")
|
|
|
|
|
2008-07-09 16:58:57 +04:00
|
|
|
#endif
|