]> git.ipfire.org Git - thirdparty/git.git/blame - advice.c
Merge branch 'ab/ambiguous-object-name'
[thirdparty/git.git] / advice.c
CommitLineData
75194438 1#include "cache.h"
b2141fc1 2#include "config.h"
960786e7 3#include "color.h"
3ac68a93 4#include "help.h"
a20f7047 5#include "string-list.h"
75194438 6
960786e7
RD
7static int advice_use_color = -1;
8static char advice_colors[][COLOR_MAXLEN] = {
9 GIT_COLOR_RESET,
10 GIT_COLOR_YELLOW, /* HINT */
11};
12
13enum color_advice {
14 ADVICE_COLOR_RESET = 0,
15 ADVICE_COLOR_HINT = 1,
16};
17
18static int parse_advise_color_slot(const char *slot)
19{
20 if (!strcasecmp(slot, "reset"))
21 return ADVICE_COLOR_RESET;
22 if (!strcasecmp(slot, "hint"))
23 return ADVICE_COLOR_HINT;
24 return -1;
25}
26
27static const char *advise_get_color(enum color_advice ix)
28{
29 if (want_color_stderr(advice_use_color))
30 return advice_colors[ix];
31 return "";
32}
33
b3b18d16
HW
34static struct {
35 const char *key;
36 int enabled;
37} advice_setting[] = {
38 [ADVICE_ADD_EMBEDDED_REPO] = { "addEmbeddedRepo", 1 },
69290551
BB
39 [ADVICE_ADD_EMPTY_PATHSPEC] = { "addEmptyPathspec", 1 },
40 [ADVICE_ADD_IGNORED_FILE] = { "addIgnoredFile", 1 },
b3b18d16
HW
41 [ADVICE_AM_WORK_DIR] = { "amWorkDir", 1 },
42 [ADVICE_CHECKOUT_AMBIGUOUS_REMOTE_BRANCH_NAME] = { "checkoutAmbiguousRemoteBranchName", 1 },
43 [ADVICE_COMMIT_BEFORE_MERGE] = { "commitBeforeMerge", 1 },
44 [ADVICE_DETACHED_HEAD] = { "detachedHead", 1 },
45 [ADVICE_FETCH_SHOW_FORCED_UPDATES] = { "fetchShowForcedUpdates", 1 },
46 [ADVICE_GRAFT_FILE_DEPRECATED] = { "graftFileDeprecated", 1 },
47 [ADVICE_IGNORED_HOOK] = { "ignoredHook", 1 },
48 [ADVICE_IMPLICIT_IDENTITY] = { "implicitIdentity", 1 },
49 [ADVICE_NESTED_TAG] = { "nestedTag", 1 },
50 [ADVICE_OBJECT_NAME_WARNING] = { "objectNameWarning", 1 },
51 [ADVICE_PUSH_ALREADY_EXISTS] = { "pushAlreadyExists", 1 },
52 [ADVICE_PUSH_FETCH_FIRST] = { "pushFetchFirst", 1 },
53 [ADVICE_PUSH_NEEDS_FORCE] = { "pushNeedsForce", 1 },
3b990aa6 54 [ADVICE_PUSH_REF_NEEDS_UPDATE] = { "pushRefNeedsUpdate", 1 },
b3b18d16
HW
55
56 /* make this an alias for backward compatibility */
57 [ADVICE_PUSH_UPDATE_REJECTED_ALIAS] = { "pushNonFastForward", 1 },
58
59 [ADVICE_PUSH_NON_FF_CURRENT] = { "pushNonFFCurrent", 1 },
60 [ADVICE_PUSH_NON_FF_MATCHING] = { "pushNonFFMatching", 1 },
61 [ADVICE_PUSH_UNQUALIFIED_REF_NAME] = { "pushUnqualifiedRefName", 1 },
62 [ADVICE_PUSH_UPDATE_REJECTED] = { "pushUpdateRejected", 1 },
63 [ADVICE_RESET_QUIET_WARNING] = { "resetQuiet", 1 },
64 [ADVICE_RESOLVE_CONFLICT] = { "resolveConflict", 1 },
65 [ADVICE_RM_HINTS] = { "rmHints", 1 },
66 [ADVICE_SEQUENCER_IN_USE] = { "sequencerInUse", 1 },
67 [ADVICE_SET_UPSTREAM_FAILURE] = { "setUpstreamFailure", 1 },
767a4ca6 68 [ADVICE_SKIPPED_CHERRY_PICKS] = { "skippedCherryPicks", 1 },
b3b18d16
HW
69 [ADVICE_STATUS_AHEAD_BEHIND_WARNING] = { "statusAheadBehindWarning", 1 },
70 [ADVICE_STATUS_HINTS] = { "statusHints", 1 },
71 [ADVICE_STATUS_U_OPTION] = { "statusUoption", 1 },
72 [ADVICE_SUBMODULE_ALTERNATE_ERROR_STRATEGY_DIE] = { "submoduleAlternateErrorStrategyDie", 1 },
961b130d 73 [ADVICE_SUBMODULES_NOT_UPDATED] = { "submodulesNotUpdated", 1 },
a20f7047 74 [ADVICE_UPDATE_SPARSE_PATH] = { "updateSparsePath", 1 },
b3b18d16
HW
75 [ADVICE_WAITING_FOR_EDITOR] = { "waitingForEditor", 1 },
76};
77
78static const char turn_off_instructions[] =
79N_("\n"
80 "Disable this message with \"git config advice.%s false\"");
81
82static void vadvise(const char *advice, int display_instructions,
83 const char *key, va_list params)
38ef61cf 84{
23cb5bf3 85 struct strbuf buf = STRBUF_INIT;
23cb5bf3 86 const char *cp, *np;
38ef61cf 87
447b99c8 88 strbuf_vaddf(&buf, advice, params);
23cb5bf3 89
b3b18d16
HW
90 if (display_instructions)
91 strbuf_addf(&buf, turn_off_instructions, key);
23cb5bf3
JH
92
93 for (cp = buf.buf; *cp; cp = np) {
94 np = strchrnul(cp, '\n');
960786e7
RD
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));
23cb5bf3
JH
99 if (*np)
100 np++;
101 }
102 strbuf_release(&buf);
38ef61cf
RR
103}
104
06ac2b3b
HW
105void advise(const char *advice, ...)
106{
107 va_list params;
108 va_start(params, advice);
b3b18d16
HW
109 vadvise(advice, 0, "", params);
110 va_end(params);
111}
112
113int advice_enabled(enum advice_type type)
114{
115 switch(type) {
116 case ADVICE_PUSH_UPDATE_REJECTED:
117 return advice_setting[ADVICE_PUSH_UPDATE_REJECTED].enabled &&
118 advice_setting[ADVICE_PUSH_UPDATE_REJECTED_ALIAS].enabled;
119 default:
120 return advice_setting[type].enabled;
121 }
122}
123
124void advise_if_enabled(enum advice_type type, const char *advice, ...)
125{
126 va_list params;
127
128 if (!advice_enabled(type))
129 return;
130
131 va_start(params, advice);
132 vadvise(advice, 1, advice_setting[type].key, params);
06ac2b3b
HW
133 va_end(params);
134}
135
75194438
JK
136int git_default_advice_config(const char *var, const char *value)
137{
960786e7 138 const char *k, *slot_name;
75194438
JK
139 int i;
140
960786e7
RD
141 if (!strcmp(var, "color.advice")) {
142 advice_use_color = git_config_colorbool(var, value);
143 return 0;
144 }
145
146 if (skip_prefix(var, "color.advice.", &slot_name)) {
147 int slot = parse_advise_color_slot(slot_name);
148 if (slot < 0)
149 return 0;
150 if (!value)
151 return config_error_nonbool(var);
152 return color_parse(value, advice_colors[slot]);
153 }
154
cf4fff57
JK
155 if (!skip_prefix(var, "advice.", &k))
156 return 0;
157
b3b18d16
HW
158 for (i = 0; i < ARRAY_SIZE(advice_setting); i++) {
159 if (strcasecmp(k, advice_setting[i].key))
160 continue;
161 advice_setting[i].enabled = git_config_bool(var, value);
75194438
JK
162 return 0;
163 }
164
165 return 0;
166}
d38a30df 167
3ac68a93
NTND
168void list_config_advices(struct string_list *list, const char *prefix)
169{
170 int i;
171
b3b18d16
HW
172 for (i = 0; i < ARRAY_SIZE(advice_setting); i++)
173 list_config_item(list, prefix, advice_setting[i].key);
3ac68a93
NTND
174}
175
38ef61cf 176int error_resolve_conflict(const char *me)
d38a30df 177{
8785c425
VA
178 if (!strcmp(me, "cherry-pick"))
179 error(_("Cherry-picking is not possible because you have unmerged files."));
180 else if (!strcmp(me, "commit"))
181 error(_("Committing is not possible because you have unmerged files."));
182 else if (!strcmp(me, "merge"))
183 error(_("Merging is not possible because you have unmerged files."));
184 else if (!strcmp(me, "pull"))
185 error(_("Pulling is not possible because you have unmerged files."));
186 else if (!strcmp(me, "revert"))
187 error(_("Reverting is not possible because you have unmerged files."));
188 else
189 error(_("It is not possible to %s because you have unmerged files."),
190 me);
191
ed9bff08 192 if (advice_enabled(ADVICE_RESOLVE_CONFLICT))
d38a30df
MM
193 /*
194 * Message used both when 'git commit' fails and when
195 * other commands doing a merge do.
196 */
c057b242 197 advise(_("Fix them up in the work tree, and then use 'git add/rm <file>'\n"
91e70e00 198 "as appropriate to mark resolution and make a commit."));
38ef61cf
RR
199 return -1;
200}
201
202void NORETURN die_resolve_conflict(const char *me)
203{
204 error_resolve_conflict(me);
8785c425 205 die(_("Exiting because of an unresolved conflict."));
d38a30df 206}
2857093b 207
4a4cf9e8
PT
208void NORETURN die_conclude_merge(void)
209{
210 error(_("You have not concluded your merge (MERGE_HEAD exists)."));
ed9bff08 211 if (advice_enabled(ADVICE_RESOLVE_CONFLICT))
b7447679 212 advise(_("Please, commit your changes before merging."));
4a4cf9e8
PT
213 die(_("Exiting because of unfinished merge."));
214}
215
3d5fc24d
AH
216void NORETURN die_ff_impossible(void)
217{
218 die(_("Not possible to fast-forward, aborting."));
219}
220
a20f7047
MT
221void advise_on_updating_sparse_paths(struct string_list *pathspec_list)
222{
223 struct string_list_item *item;
224
225 if (!pathspec_list->nr)
226 return;
227
6579e788
DS
228 fprintf(stderr, _("The following paths and/or pathspecs matched paths that exist\n"
229 "outside of your sparse-checkout definition, so will not be\n"
230 "updated in the index:\n"));
a20f7047
MT
231 for_each_string_list_item(item, pathspec_list)
232 fprintf(stderr, "%s\n", item->string);
233
234 advise_if_enabled(ADVICE_UPDATE_SPARSE_PATH,
6579e788
DS
235 _("If you intend to update such entries, try one of the following:\n"
236 "* Use the --sparse option.\n"
237 "* Disable or modify the sparsity rules."));
a20f7047
MT
238}
239
2857093b
NTND
240void detach_advice(const char *new_name)
241{
e9f3cec4 242 const char *fmt =
328c6cb8 243 _("Note: switching to '%s'.\n"
af9ded5b 244 "\n"
2857093b
NTND
245 "You are in 'detached HEAD' state. You can look around, make experimental\n"
246 "changes and commit them, and you can discard any commits you make in this\n"
328c6cb8 247 "state without impacting any branches by switching back to a branch.\n"
af9ded5b 248 "\n"
2857093b 249 "If you want to create a new branch to retain commits you create, you may\n"
328c6cb8 250 "do so (now or later) by using -c with the switch command. Example:\n"
af9ded5b 251 "\n"
328c6cb8 252 " git switch -c <new-branch-name>\n"
af9ded5b 253 "\n"
328c6cb8 254 "Or undo this operation with:\n"
af9ded5b 255 "\n"
328c6cb8 256 " git switch -\n"
af9ded5b
NTND
257 "\n"
258 "Turn off this advice by setting config variable advice.detachedHead to false\n\n");
2857093b
NTND
259
260 fprintf(stderr, fmt, new_name);
261}