Merge branch 'nd/reject-empty-shallow-request'
[git.git] / advice.c
blob52aa85bdfd9e9054c24445f259125bc4b81be038
1 #include "cache.h"
2 #include "config.h"
3 #include "color.h"
4 #include "help.h"
6 int advice_push_update_rejected = 1;
7 int advice_push_non_ff_current = 1;
8 int advice_push_non_ff_matching = 1;
9 int advice_push_already_exists = 1;
10 int advice_push_fetch_first = 1;
11 int advice_push_needs_force = 1;
12 int advice_status_hints = 1;
13 int advice_status_u_option = 1;
14 int advice_commit_before_merge = 1;
15 int advice_resolve_conflict = 1;
16 int advice_implicit_identity = 1;
17 int advice_detached_head = 1;
18 int advice_set_upstream_failure = 1;
19 int advice_object_name_warning = 1;
20 int advice_amworkdir = 1;
21 int advice_rm_hints = 1;
22 int advice_add_embedded_repo = 1;
23 int advice_ignored_hook = 1;
24 int advice_waiting_for_editor = 1;
25 int advice_graft_file_deprecated = 1;
27 static int advice_use_color = -1;
28 static char advice_colors[][COLOR_MAXLEN] = {
29 GIT_COLOR_RESET,
30 GIT_COLOR_YELLOW, /* HINT */
33 enum color_advice {
34 ADVICE_COLOR_RESET = 0,
35 ADVICE_COLOR_HINT = 1,
38 static int parse_advise_color_slot(const char *slot)
40 if (!strcasecmp(slot, "reset"))
41 return ADVICE_COLOR_RESET;
42 if (!strcasecmp(slot, "hint"))
43 return ADVICE_COLOR_HINT;
44 return -1;
47 static const char *advise_get_color(enum color_advice ix)
49 if (want_color_stderr(advice_use_color))
50 return advice_colors[ix];
51 return "";
54 static struct {
55 const char *name;
56 int *preference;
57 } advice_config[] = {
58 { "pushUpdateRejected", &advice_push_update_rejected },
59 { "pushNonFFCurrent", &advice_push_non_ff_current },
60 { "pushNonFFMatching", &advice_push_non_ff_matching },
61 { "pushAlreadyExists", &advice_push_already_exists },
62 { "pushFetchFirst", &advice_push_fetch_first },
63 { "pushNeedsForce", &advice_push_needs_force },
64 { "statusHints", &advice_status_hints },
65 { "statusUoption", &advice_status_u_option },
66 { "commitBeforeMerge", &advice_commit_before_merge },
67 { "resolveConflict", &advice_resolve_conflict },
68 { "implicitIdentity", &advice_implicit_identity },
69 { "detachedHead", &advice_detached_head },
70 { "setupStreamFailure", &advice_set_upstream_failure },
71 { "objectNameWarning", &advice_object_name_warning },
72 { "amWorkDir", &advice_amworkdir },
73 { "rmHints", &advice_rm_hints },
74 { "addEmbeddedRepo", &advice_add_embedded_repo },
75 { "ignoredHook", &advice_ignored_hook },
76 { "waitingForEditor", &advice_waiting_for_editor },
77 { "graftFileDeprecated", &advice_graft_file_deprecated },
79 /* make this an alias for backward compatibility */
80 { "pushNonFastForward", &advice_push_update_rejected }
83 void advise(const char *advice, ...)
85 struct strbuf buf = STRBUF_INIT;
86 va_list params;
87 const char *cp, *np;
89 va_start(params, advice);
90 strbuf_vaddf(&buf, advice, params);
91 va_end(params);
93 for (cp = buf.buf; *cp; cp = np) {
94 np = strchrnul(cp, '\n');
95 fprintf(stderr, _("%shint: %.*s%s\n"),
96 advise_get_color(ADVICE_COLOR_HINT),
97 (int)(np - cp), cp,
98 advise_get_color(ADVICE_COLOR_RESET));
99 if (*np)
100 np++;
102 strbuf_release(&buf);
105 int git_default_advice_config(const char *var, const char *value)
107 const char *k, *slot_name;
108 int i;
110 if (!strcmp(var, "color.advice")) {
111 advice_use_color = git_config_colorbool(var, value);
112 return 0;
115 if (skip_prefix(var, "color.advice.", &slot_name)) {
116 int slot = parse_advise_color_slot(slot_name);
117 if (slot < 0)
118 return 0;
119 if (!value)
120 return config_error_nonbool(var);
121 return color_parse(value, advice_colors[slot]);
124 if (!skip_prefix(var, "advice.", &k))
125 return 0;
127 for (i = 0; i < ARRAY_SIZE(advice_config); i++) {
128 if (strcasecmp(k, advice_config[i].name))
129 continue;
130 *advice_config[i].preference = git_config_bool(var, value);
131 return 0;
134 return 0;
137 void list_config_advices(struct string_list *list, const char *prefix)
139 int i;
141 for (i = 0; i < ARRAY_SIZE(advice_config); i++)
142 list_config_item(list, prefix, advice_config[i].name);
145 int error_resolve_conflict(const char *me)
147 if (!strcmp(me, "cherry-pick"))
148 error(_("Cherry-picking is not possible because you have unmerged files."));
149 else if (!strcmp(me, "commit"))
150 error(_("Committing is not possible because you have unmerged files."));
151 else if (!strcmp(me, "merge"))
152 error(_("Merging is not possible because you have unmerged files."));
153 else if (!strcmp(me, "pull"))
154 error(_("Pulling is not possible because you have unmerged files."));
155 else if (!strcmp(me, "revert"))
156 error(_("Reverting is not possible because you have unmerged files."));
157 else
158 error(_("It is not possible to %s because you have unmerged files."),
159 me);
161 if (advice_resolve_conflict)
163 * Message used both when 'git commit' fails and when
164 * other commands doing a merge do.
166 advise(_("Fix them up in the work tree, and then use 'git add/rm <file>'\n"
167 "as appropriate to mark resolution and make a commit."));
168 return -1;
171 void NORETURN die_resolve_conflict(const char *me)
173 error_resolve_conflict(me);
174 die(_("Exiting because of an unresolved conflict."));
177 void NORETURN die_conclude_merge(void)
179 error(_("You have not concluded your merge (MERGE_HEAD exists)."));
180 if (advice_resolve_conflict)
181 advise(_("Please, commit your changes before merging."));
182 die(_("Exiting because of unfinished merge."));
185 void detach_advice(const char *new_name)
187 const char *fmt =
188 _("Note: checking out '%s'.\n\n"
189 "You are in 'detached HEAD' state. You can look around, make experimental\n"
190 "changes and commit them, and you can discard any commits you make in this\n"
191 "state without impacting any branches by performing another checkout.\n\n"
192 "If you want to create a new branch to retain commits you create, you may\n"
193 "do so (now or later) by using -b with the checkout command again. Example:\n\n"
194 " git checkout -b <new-branch-name>\n\n");
196 fprintf(stderr, fmt, new_name);