Skip to content

Commit 968a04e

Browse files
avargitster
authored andcommitted
builtin/bundle.c: indent with tabs
Fix indentation issues introduced with 73c3253 (bundle: framework for options before bundle file, 2019-11-10), and carried forward in some subsequent commits. Signed-off-by: Ævar Arnfjörð Bjarmason <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 6584fcc commit 968a04e

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

builtin/bundle.c

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -12,31 +12,31 @@
1212
*/
1313

1414
static const char * const builtin_bundle_usage[] = {
15-
N_("git bundle create [<options>] <file> <git-rev-list args>"),
16-
N_("git bundle verify [<options>] <file>"),
17-
N_("git bundle list-heads <file> [<refname>...]"),
18-
N_("git bundle unbundle <file> [<refname>...]"),
19-
NULL
15+
N_("git bundle create [<options>] <file> <git-rev-list args>"),
16+
N_("git bundle verify [<options>] <file>"),
17+
N_("git bundle list-heads <file> [<refname>...]"),
18+
N_("git bundle unbundle <file> [<refname>...]"),
19+
NULL
2020
};
2121

2222
static const char * const builtin_bundle_create_usage[] = {
23-
N_("git bundle create [<options>] <file> <git-rev-list args>"),
24-
NULL
23+
N_("git bundle create [<options>] <file> <git-rev-list args>"),
24+
NULL
2525
};
2626

2727
static const char * const builtin_bundle_verify_usage[] = {
28-
N_("git bundle verify [<options>] <file>"),
29-
NULL
28+
N_("git bundle verify [<options>] <file>"),
29+
NULL
3030
};
3131

3232
static const char * const builtin_bundle_list_heads_usage[] = {
33-
N_("git bundle list-heads <file> [<refname>...]"),
34-
NULL
33+
N_("git bundle list-heads <file> [<refname>...]"),
34+
NULL
3535
};
3636

3737
static const char * const builtin_bundle_unbundle_usage[] = {
38-
N_("git bundle unbundle <file> [<refname>...]"),
39-
NULL
38+
N_("git bundle unbundle <file> [<refname>...]"),
39+
NULL
4040
};
4141

4242
static int parse_options_cmd_bundle(int argc,

0 commit comments

Comments
 (0)