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:39:16 +0300
committerJunio C Hamano <gitster@pobox.com>2022-10-13 19:32:57 +0300
commita5748670e387dd32450a59b00d17044a34818b9a (patch)
tree00dabd2a44bfc76fa07d2231d86eda44a9f2b305 /builtin/bundle.c
parente8eeda1f9e1e125e268e97cfea42bf3ea8232b68 (diff)
doc txt & -h consistency: make "bundle" consistent
Amend the -h output to match that of the *.txt output, the differences were fairly small. In the case of "[<options>]" we only have a few of them, so let's exhaustively list them as in the *.txt. 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.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/builtin/bundle.c b/builtin/bundle.c
index 1b08700bf9..544c78a5f3 100644
--- a/builtin/bundle.c
+++ b/builtin/bundle.c
@@ -12,13 +12,14 @@
*/
#define BUILTIN_BUNDLE_CREATE_USAGE \
- N_("git bundle create [<options>] <file> <git-rev-list args>")
+ N_("git bundle create [-q | --quiet | --progress | --all-progress] [--all-progress-implied]\n" \
+ " [--version=<version>] <file> <git-rev-list-args>")
#define BUILTIN_BUNDLE_VERIFY_USAGE \
- N_("git bundle verify [<options>] <file>")
+ N_("git bundle verify [-q | --quiet] <file>")
#define BUILTIN_BUNDLE_LIST_HEADS_USAGE \
N_("git bundle list-heads <file> [<refname>...]")
#define BUILTIN_BUNDLE_UNBUNDLE_USAGE \
- N_("git bundle unbundle <file> [<refname>...]")
+ N_("git bundle unbundle [--progress] <file> [<refname>...]")
static char const * const builtin_bundle_usage[] = {
BUILTIN_BUNDLE_CREATE_USAGE,