]> git.ipfire.org Git - thirdparty/git.git/commitdiff
pull: trivial whitespace style fix
authorFelipe Contreras <felipe.contreras@gmail.com>
Thu, 17 Jun 2021 16:17:10 +0000 (11:17 -0500)
committerJunio C Hamano <gitster@pobox.com>
Sat, 19 Jun 2021 07:36:17 +0000 (16:36 +0900)
Two spaces unaligned to anything is not part of the coding-style. A
single tab is.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/pull.c

index 80e2f55cbcc6a534befd5963f9a123446829b73b..3e13f8108432fe03b6cb5e10b4b3fe737e9db0f4 100644 (file)
@@ -126,9 +126,9 @@ static struct option pull_options[] = {
        /* Options passed to git-merge or git-rebase */
        OPT_GROUP(N_("Options related to merging")),
        OPT_CALLBACK_F('r', "rebase", &opt_rebase,
-         "(false|true|merges|preserve|interactive)",
-         N_("incorporate changes by rebasing rather than merging"),
-         PARSE_OPT_OPTARG, parse_opt_rebase),
+               "(false|true|merges|preserve|interactive)",
+               N_("incorporate changes by rebasing rather than merging"),
+               PARSE_OPT_OPTARG, parse_opt_rebase),
        OPT_PASSTHRU('n', NULL, &opt_diffstat, NULL,
                N_("do not show a diffstat at the end of the merge"),
                PARSE_OPT_NOARG | PARSE_OPT_NONEG),