summaryrefslogtreecommitdiff
path: root/advice.c
diff options
context:
space:
mode:
authorHeba Waly <heba.waly@gmail.com>2020-01-07 23:12:32 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-01-15 20:15:04 (GMT)
commitbf66db37f1e17b71e8edb93d78ec407fbc1e0989 (patch)
treef7deea5a692390a58ab180197cac01e29d5b81fa /advice.c
parentd0654dc308b0ba76dd8ed7bbb33c8d8f7aacd783 (diff)
downloadgit-bf66db37f1e17b71e8edb93d78ec407fbc1e0989.zip
git-bf66db37f1e17b71e8edb93d78ec407fbc1e0989.tar.gz
git-bf66db37f1e17b71e8edb93d78ec407fbc1e0989.tar.bz2
add: use advise function to display hints
Use the advise function in advice.c to display hints to the users, as it provides a neat and a standard format for hint messages, i.e: the text is colored in yellow and the line starts by the word "hint:". Also this will enable us to control the messages using advice.* configuration variables. Signed-off-by: Heba Waly <heba.waly@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'advice.c')
-rw-r--r--advice.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/advice.c b/advice.c
index 249c60d..098ac0a 100644
--- a/advice.c
+++ b/advice.c
@@ -31,6 +31,7 @@ int advice_graft_file_deprecated = 1;
int advice_checkout_ambiguous_remote_branch_name = 1;
int advice_nested_tag = 1;
int advice_submodule_alternate_error_strategy_die = 1;
+int advice_add_nothing = 1;
static int advice_use_color = -1;
static char advice_colors[][COLOR_MAXLEN] = {
@@ -91,6 +92,7 @@ static struct {
{ "checkoutAmbiguousRemoteBranchName", &advice_checkout_ambiguous_remote_branch_name },
{ "nestedTag", &advice_nested_tag },
{ "submoduleAlternateErrorStrategyDie", &advice_submodule_alternate_error_strategy_die },
+ { "addNothing", &advice_add_nothing },
/* make this an alias for backward compatibility */
{ "pushNonFastForward", &advice_push_update_rejected }