]> git.ipfire.org Git - thirdparty/git.git/commitdiff
pull: colorize the hint about setting `pull.rebase`
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Thu, 19 Nov 2020 10:22:29 +0000 (10:22 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 19 Nov 2020 22:13:30 +0000 (14:13 -0800)
In d18c950a69f (pull: warn if the user didn't say whether to rebase or
to merge, 2020-03-09), a new hint was introduced to encourage users to
make a conscious decision about whether they want their pull to merge or
to rebase by configuring the `pull.rebase` setting.

This warning was clearly intended to advise users, but as pointed out in
https://lore.kernel.org/git/87ima2rdsm.fsf%40evledraar.gmail.com, it
uses `warning()` instead of `advise()`.

One consequence is that the advice is not colorized in the same manner
as other, similar messages. So let's use `advise()` instead.

Pointed-out-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/pull.c
t/t7601-merge-pull-config.sh

index 425950f46973d3949e24cbc1cf8cf74e97eeb417..b9c2aaa635e416285cc1ffa69bb49076bada3c05 100644 (file)
@@ -345,18 +345,18 @@ static enum rebase_type config_get_rebase(void)
                return parse_config_rebase("pull.rebase", value, 1);
 
        if (opt_verbosity >= 0 && !opt_ff) {
-               warning(_("Pulling without specifying how to reconcile divergent branches is\n"
-                       "discouraged. You can squelch this message by running one of the following\n"
-                       "commands sometime before your next pull:\n"
-                       "\n"
-                       "  git config pull.rebase false  # merge (the default strategy)\n"
-                       "  git config pull.rebase true   # rebase\n"
-                       "  git config pull.ff only       # fast-forward only\n"
-                       "\n"
-                       "You can replace \"git config\" with \"git config --global\" to set a default\n"
-                       "preference for all repositories. You can also pass --rebase, --no-rebase,\n"
-                       "or --ff-only on the command line to override the configured default per\n"
-                       "invocation.\n"));
+               advise(_("Pulling without specifying how to reconcile divergent branches is\n"
+                        "discouraged. You can squelch this message by running one of the following\n"
+                        "commands sometime before your next pull:\n"
+                        "\n"
+                        "  git config pull.rebase false  # merge (the default strategy)\n"
+                        "  git config pull.rebase true   # rebase\n"
+                        "  git config pull.ff only       # fast-forward only\n"
+                        "\n"
+                        "You can replace \"git config\" with \"git config --global\" to set a default\n"
+                        "preference for all repositories. You can also pass --rebase, --no-rebase,\n"
+                        "or --ff-only on the command line to override the configured default per\n"
+                        "invocation.\n"));
        }
 
        return REBASE_FALSE;
index c5c4ea5fc09e335b41e021f04206c4328326c811..6774e9d86fa04c901b3833127e72f63a60028236 100755 (executable)
@@ -29,8 +29,11 @@ test_expect_success 'setup' '
 
 test_expect_success 'pull.rebase not set' '
        git reset --hard c0 &&
-       git pull . c1 2>err &&
-       test_i18ngrep "Pulling without specifying how to reconcile" err
+       git -c color.advice=always pull . c1 2>err &&
+       test_decode_color <err >decoded &&
+       test_i18ngrep "<YELLOW>hint: " decoded &&
+       test_i18ngrep "Pulling without specifying how to reconcile" decoded
+
 '
 
 test_expect_success 'pull.rebase not set and pull.ff=true' '