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