diff options
author | Rubén Justo <rjusto@gmail.com> | 2024-03-30 15:08:59 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2024-03-31 01:55:01 +0100 |
commit | 1028db00f7bc47e2cecda8a4a9967fcc05fffb48 (patch) | |
tree | fa63a7247bd667577b5a1c109eb4d50ad4d46a2a /builtin | |
parent | add: use advise_if_enabled for ADVICE_ADD_IGNORED_FILE (diff) | |
download | git-1028db00f7bc47e2cecda8a4a9967fcc05fffb48.tar.xz git-1028db00f7bc47e2cecda8a4a9967fcc05fffb48.zip |
add: use advise_if_enabled for ADVICE_ADD_EMPTY_PATHSPEC
Since 93b0d86aaf (git-add: error out when given no arguments.,
2006-12-20) we display a message when no arguments are given to "git
add".
Part of that message was converted to advice in bf66db37f1 (add: use
advise function to display hints, 2020-01-07).
Following the same line of reasoning as in the previous commit, it is
sensible to use advise_if_enabled() here.
Therefore, use advise_if_enabled() in builtin/add.c to show the
ADVICE_ADD_EMPTY_PATHSPEC advice, and don't bother checking there the
visibility of the advice or displaying the instruction on how to disable
it.
Also add a test for these messages, in order to detect a possible
change in them.
Signed-off-by: Rubén Justo <rjusto@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/add.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/builtin/add.c b/builtin/add.c index 092d3120b5..0f981f5aa1 100644 --- a/builtin/add.c +++ b/builtin/add.c @@ -438,10 +438,8 @@ int cmd_add(int argc, const char **argv, const char *prefix) if (require_pathspec && pathspec.nr == 0) { fprintf(stderr, _("Nothing specified, nothing added.\n")); - if (advice_enabled(ADVICE_ADD_EMPTY_PATHSPEC)) - advise( _("Maybe you wanted to say 'git add .'?\n" - "Turn this message off by running\n" - "\"git config advice.addEmptyPathspec false\"")); + advise_if_enabled(ADVICE_ADD_EMPTY_PATHSPEC, + _("Maybe you wanted to say 'git add .'?")); return 0; } |