rerere.hon commit rerere: do use multiple variants (629716d)
   1#ifndef RERERE_H
   2#define RERERE_H
   3
   4#include "string-list.h"
   5
   6struct pathspec;
   7
   8#define RERERE_AUTOUPDATE   01
   9#define RERERE_NOAUTOUPDATE 02
  10
  11/*
  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.
  15 */
  16extern void *RERERE_RESOLVED;
  17
  18struct rerere_dir;
  19struct rerere_id {
  20        struct rerere_dir *collection;
  21        int variant;
  22};
  23
  24extern int setup_rerere(struct string_list *, int);
  25extern int rerere(int);
  26/*
  27 * Given the conflict ID and the name of a "file" used for replaying
  28 * the recorded resolution (e.g. "preimage", "postimage"), return the
  29 * path to that filesystem entity.  With "file" specified with NULL,
  30 * return the path to the directory that houses these files.
  31 */
  32extern const char *rerere_path(const struct rerere_id *, const char *file);
  33extern int rerere_forget(struct pathspec *);
  34extern int rerere_remaining(struct string_list *);
  35extern void rerere_clear(struct string_list *);
  36extern void rerere_gc(struct string_list *);
  37
  38#define OPT_RERERE_AUTOUPDATE(v) OPT_UYN(0, "rerere-autoupdate", (v), \
  39        N_("update the index with reused conflict resolution if possible"))
  40
  41#endif