Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2022-10-13 18:38:57 +0300
committerJunio C Hamano <gitster@pobox.com>2022-10-13 19:32:54 +0300
commit968a04e4478dff3aacbdd225e436fc2ec1c6a76a (patch)
treeb8115ba3f04713bc0a80805b14a1f68c7fdce13e /builtin/bundle.c
parent6584fcc5c8ed2ed7e0785bcda3513a4bedb017ce (diff)
builtin/bundle.c: indent with tabs
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>
Diffstat (limited to 'builtin/bundle.c')
-rw-r--r--builtin/bundle.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/builtin/bundle.c b/builtin/bundle.c
index e80efce3a4..5c78894afd 100644
--- a/builtin/bundle.c
+++ b/builtin/bundle.c
@@ -12,31 +12,31 @@
*/
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,