advice.hon commit contrib/diffall: eliminate use of tar (e33e01d)
   1#ifndef ADVICE_H
   2#define ADVICE_H
   3
   4#include "git-compat-util.h"
   5
   6extern int advice_push_nonfastforward;
   7extern int advice_status_hints;
   8extern int advice_commit_before_merge;
   9extern int advice_resolve_conflict;
  10extern int advice_implicit_identity;
  11extern int advice_detached_head;
  12
  13int git_default_advice_config(const char *var, const char *value);
  14void advise(const char *advice, ...);
  15int error_resolve_conflict(const char *me);
  16extern void NORETURN die_resolve_conflict(const char *me);
  17void detach_advice(const char *new_name);
  18
  19#endif /* ADVICE_H */