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;
26 int advice_checkout_ambiguous_remote_branch_name
= 1;
28 static int advice_use_color
= -1;
29 static char advice_colors
[][COLOR_MAXLEN
] = {
31 GIT_COLOR_YELLOW
, /* HINT */
35 ADVICE_COLOR_RESET
= 0,
36 ADVICE_COLOR_HINT
= 1,
39 static int parse_advise_color_slot(const char *slot
)
41 if (!strcasecmp(slot
, "reset"))
42 return ADVICE_COLOR_RESET
;
43 if (!strcasecmp(slot
, "hint"))
44 return ADVICE_COLOR_HINT
;
48 static const char *advise_get_color(enum color_advice ix
)
50 if (want_color_stderr(advice_use_color
))
51 return advice_colors
[ix
];
59 { "pushUpdateRejected", &advice_push_update_rejected
},
60 { "pushNonFFCurrent", &advice_push_non_ff_current
},
61 { "pushNonFFMatching", &advice_push_non_ff_matching
},
62 { "pushAlreadyExists", &advice_push_already_exists
},
63 { "pushFetchFirst", &advice_push_fetch_first
},
64 { "pushNeedsForce", &advice_push_needs_force
},
65 { "statusHints", &advice_status_hints
},
66 { "statusUoption", &advice_status_u_option
},
67 { "commitBeforeMerge", &advice_commit_before_merge
},
68 { "resolveConflict", &advice_resolve_conflict
},
69 { "implicitIdentity", &advice_implicit_identity
},
70 { "detachedHead", &advice_detached_head
},
71 { "setupStreamFailure", &advice_set_upstream_failure
},
72 { "objectNameWarning", &advice_object_name_warning
},
73 { "amWorkDir", &advice_amworkdir
},
74 { "rmHints", &advice_rm_hints
},
75 { "addEmbeddedRepo", &advice_add_embedded_repo
},
76 { "ignoredHook", &advice_ignored_hook
},
77 { "waitingForEditor", &advice_waiting_for_editor
},
78 { "graftFileDeprecated", &advice_graft_file_deprecated
},
79 { "checkoutAmbiguousRemoteBranchName", &advice_checkout_ambiguous_remote_branch_name
},
81 /* make this an alias for backward compatibility */
82 { "pushNonFastForward", &advice_push_update_rejected
}
85 void advise(const char *advice
, ...)
87 struct strbuf buf
= STRBUF_INIT
;
91 va_start(params
, advice
);
92 strbuf_vaddf(&buf
, advice
, params
);
95 for (cp
= buf
.buf
; *cp
; cp
= np
) {
96 np
= strchrnul(cp
, '\n');
97 fprintf(stderr
, _("%shint: %.*s%s\n"),
98 advise_get_color(ADVICE_COLOR_HINT
),
100 advise_get_color(ADVICE_COLOR_RESET
));
104 strbuf_release(&buf
);
107 int git_default_advice_config(const char *var
, const char *value
)
109 const char *k
, *slot_name
;
112 if (!strcmp(var
, "color.advice")) {
113 advice_use_color
= git_config_colorbool(var
, value
);
117 if (skip_prefix(var
, "color.advice.", &slot_name
)) {
118 int slot
= parse_advise_color_slot(slot_name
);
122 return config_error_nonbool(var
);
123 return color_parse(value
, advice_colors
[slot
]);
126 if (!skip_prefix(var
, "advice.", &k
))
129 for (i
= 0; i
< ARRAY_SIZE(advice_config
); i
++) {
130 if (strcasecmp(k
, advice_config
[i
].name
))
132 *advice_config
[i
].preference
= git_config_bool(var
, value
);
139 void list_config_advices(struct string_list
*list
, const char *prefix
)
143 for (i
= 0; i
< ARRAY_SIZE(advice_config
); i
++)
144 list_config_item(list
, prefix
, advice_config
[i
].name
);
147 int error_resolve_conflict(const char *me
)
149 if (!strcmp(me
, "cherry-pick"))
150 error(_("Cherry-picking is not possible because you have unmerged files."));
151 else if (!strcmp(me
, "commit"))
152 error(_("Committing is not possible because you have unmerged files."));
153 else if (!strcmp(me
, "merge"))
154 error(_("Merging is not possible because you have unmerged files."));
155 else if (!strcmp(me
, "pull"))
156 error(_("Pulling is not possible because you have unmerged files."));
157 else if (!strcmp(me
, "revert"))
158 error(_("Reverting is not possible because you have unmerged files."));
160 error(_("It is not possible to %s because you have unmerged files."),
163 if (advice_resolve_conflict
)
165 * Message used both when 'git commit' fails and when
166 * other commands doing a merge do.
168 advise(_("Fix them up in the work tree, and then use 'git add/rm <file>'\n"
169 "as appropriate to mark resolution and make a commit."));
173 void NORETURN
die_resolve_conflict(const char *me
)
175 error_resolve_conflict(me
);
176 die(_("Exiting because of an unresolved conflict."));
179 void NORETURN
die_conclude_merge(void)
181 error(_("You have not concluded your merge (MERGE_HEAD exists)."));
182 if (advice_resolve_conflict
)
183 advise(_("Please, commit your changes before merging."));
184 die(_("Exiting because of unfinished merge."));
187 void detach_advice(const char *new_name
)
190 _("Note: checking out '%s'.\n\n"
191 "You are in 'detached HEAD' state. You can look around, make experimental\n"
192 "changes and commit them, and you can discard any commits you make in this\n"
193 "state without impacting any branches by performing another checkout.\n\n"
194 "If you want to create a new branch to retain commits you create, you may\n"
195 "do so (now or later) by using -b with the checkout command again. Example:\n\n"
196 " git checkout -b <new-branch-name>\n\n");
198 fprintf(stderr
, fmt
, new_name
);