]> git.ipfire.org Git - thirdparty/git.git/commitdiff
builtin/bundle.c: indent with tabs
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Thu, 13 Oct 2022 15:38:57 +0000 (17:38 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 13 Oct 2022 16:32:54 +0000 (09:32 -0700)
Fix indentation issues introduced with 73c3253d75e (bundle: framework
for options before bundle file, 2019-11-10), and carried forward in
some subsequent commits.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/bundle.c

index e80efce3a420a0371bd984102105b8a51af34df1..5c78894afd5475c4cb2f53bd9a20b683362c6178 100644 (file)
  */
 
 static const char * const builtin_bundle_usage[] = {
-  N_("git bundle create [<options>] <file> <git-rev-list args>"),
-  N_("git bundle verify [<options>] <file>"),
-  N_("git bundle list-heads <file> [<refname>...]"),
-  N_("git bundle unbundle <file> [<refname>...]"),
-  NULL
+       N_("git bundle create [<options>] <file> <git-rev-list args>"),
+       N_("git bundle verify [<options>] <file>"),
+       N_("git bundle list-heads <file> [<refname>...]"),
+       N_("git bundle unbundle <file> [<refname>...]"),
+       NULL
 };
 
 static const char * const builtin_bundle_create_usage[] = {
-  N_("git bundle create [<options>] <file> <git-rev-list args>"),
-  NULL
+       N_("git bundle create [<options>] <file> <git-rev-list args>"),
+       NULL
 };
 
 static const char * const builtin_bundle_verify_usage[] = {
-  N_("git bundle verify [<options>] <file>"),
-  NULL
+       N_("git bundle verify [<options>] <file>"),
+       NULL
 };
 
 static const char * const builtin_bundle_list_heads_usage[] = {
-  N_("git bundle list-heads <file> [<refname>...]"),
-  NULL
+       N_("git bundle list-heads <file> [<refname>...]"),
+       NULL
 };
 
 static const char * const builtin_bundle_unbundle_usage[] = {
-  N_("git bundle unbundle <file> [<refname>...]"),
-  NULL
+       N_("git bundle unbundle <file> [<refname>...]"),
+       NULL
 };
 
 static int parse_options_cmd_bundle(int argc,