@@ -345,18 +345,18 @@ static enum rebase_type config_get_rebase(void)
345
345
return parse_config_rebase ("pull.rebase" , value , 1 );
346
346
347
347
if (opt_verbosity >= 0 && !opt_ff ) {
348
- warning (_ ("Pulling without specifying how to reconcile divergent branches is\n"
349
- "discouraged. You can squelch this message by running one of the following\n"
350
- "commands sometime before your next pull:\n"
351
- "\n"
352
- " git config pull.rebase false # merge (the default strategy)\n"
353
- " git config pull.rebase true # rebase\n"
354
- " git config pull.ff only # fast-forward only\n"
355
- "\n"
356
- "You can replace \"git config\" with \"git config --global\" to set a default\n"
357
- "preference for all repositories. You can also pass --rebase, --no-rebase,\n"
358
- "or --ff-only on the command line to override the configured default per\n"
359
- "invocation.\n" ));
348
+ advise (_ ("Pulling without specifying how to reconcile divergent branches is\n"
349
+ "discouraged. You can squelch this message by running one of the following\n"
350
+ "commands sometime before your next pull:\n"
351
+ "\n"
352
+ " git config pull.rebase false # merge (the default strategy)\n"
353
+ " git config pull.rebase true # rebase\n"
354
+ " git config pull.ff only # fast-forward only\n"
355
+ "\n"
356
+ "You can replace \"git config\" with \"git config --global\" to set a default\n"
357
+ "preference for all repositories. You can also pass --rebase, --no-rebase,\n"
358
+ "or --ff-only on the command line to override the configured default per\n"
359
+ "invocation.\n" ));
360
360
}
361
361
362
362
return REBASE_FALSE ;
0 commit comments