advice.con commit Merge branch 'jk/index-pack-correct-depth-fix' into maint (68447f0)
   1#include "cache.h"
   2
   3int advice_push_update_rejected = 1;
   4int advice_push_non_ff_current = 1;
   5int advice_push_non_ff_default = 1;
   6int advice_push_non_ff_matching = 1;
   7int advice_push_already_exists = 1;
   8int advice_push_fetch_first = 1;
   9int advice_push_needs_force = 1;
  10int advice_status_hints = 1;
  11int advice_status_u_option = 1;
  12int advice_commit_before_merge = 1;
  13int advice_resolve_conflict = 1;
  14int advice_implicit_identity = 1;
  15int advice_detached_head = 1;
  16
  17static struct {
  18        const char *name;
  19        int *preference;
  20} advice_config[] = {
  21        { "pushupdaterejected", &advice_push_update_rejected },
  22        { "pushnonffcurrent", &advice_push_non_ff_current },
  23        { "pushnonffdefault", &advice_push_non_ff_default },
  24        { "pushnonffmatching", &advice_push_non_ff_matching },
  25        { "pushalreadyexists", &advice_push_already_exists },
  26        { "pushfetchfirst", &advice_push_fetch_first },
  27        { "pushneedsforce", &advice_push_needs_force },
  28        { "statushints", &advice_status_hints },
  29        { "statusuoption", &advice_status_u_option },
  30        { "commitbeforemerge", &advice_commit_before_merge },
  31        { "resolveconflict", &advice_resolve_conflict },
  32        { "implicitidentity", &advice_implicit_identity },
  33        { "detachedhead", &advice_detached_head },
  34
  35        /* make this an alias for backward compatibility */
  36        { "pushnonfastforward", &advice_push_update_rejected }
  37};
  38
  39void advise(const char *advice, ...)
  40{
  41        struct strbuf buf = STRBUF_INIT;
  42        va_list params;
  43        const char *cp, *np;
  44
  45        va_start(params, advice);
  46        strbuf_vaddf(&buf, advice, params);
  47        va_end(params);
  48
  49        for (cp = buf.buf; *cp; cp = np) {
  50                np = strchrnul(cp, '\n');
  51                fprintf(stderr, _("hint: %.*s\n"), (int)(np - cp), cp);
  52                if (*np)
  53                        np++;
  54        }
  55        strbuf_release(&buf);
  56}
  57
  58int git_default_advice_config(const char *var, const char *value)
  59{
  60        const char *k = skip_prefix(var, "advice.");
  61        int i;
  62
  63        for (i = 0; i < ARRAY_SIZE(advice_config); i++) {
  64                if (strcmp(k, advice_config[i].name))
  65                        continue;
  66                *advice_config[i].preference = git_config_bool(var, value);
  67                return 0;
  68        }
  69
  70        return 0;
  71}
  72
  73int error_resolve_conflict(const char *me)
  74{
  75        error("'%s' is not possible because you have unmerged files.", me);
  76        if (advice_resolve_conflict)
  77                /*
  78                 * Message used both when 'git commit' fails and when
  79                 * other commands doing a merge do.
  80                 */
  81                advise(_("Fix them up in the work tree,\n"
  82                         "and then use 'git add/rm <file>' as\n"
  83                         "appropriate to mark resolution and make a commit,\n"
  84                         "or use 'git commit -a'."));
  85        return -1;
  86}
  87
  88void NORETURN die_resolve_conflict(const char *me)
  89{
  90        error_resolve_conflict(me);
  91        die("Exiting because of an unresolved conflict.");
  92}
  93
  94void detach_advice(const char *new_name)
  95{
  96        const char fmt[] =
  97        "Note: checking out '%s'.\n\n"
  98        "You are in 'detached HEAD' state. You can look around, make experimental\n"
  99        "changes and commit them, and you can discard any commits you make in this\n"
 100        "state without impacting any branches by performing another checkout.\n\n"
 101        "If you want to create a new branch to retain commits you create, you may\n"
 102        "do so (now or later) by using -b with the checkout command again. Example:\n\n"
 103        "  git checkout -b new_branch_name\n\n";
 104
 105        fprintf(stderr, fmt, new_name);
 106}