diff options
author | Jean-Noël Avila <jn.avila@free.fr> | 2021-10-28 16:21:56 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-10-28 09:57:09 -0700 |
commit | b7bf32b0c5b4b43b22da78e161154070f1b47aa7 (patch) | |
tree | 40480a6b6d56edc9d35da3220a681849eff54c36 /builtin | |
parent | Git 2.33.1 (diff) | |
download | tgif-b7bf32b0c5b4b43b22da78e161154070f1b47aa7.tar.xz |
doc: fix git credential synopsis
The subcommand of git credential is not optional.
Signed-off-by: Jean-Noël Avila <jn.avila@free.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/credential.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/credential.c b/builtin/credential.c index d75dcdc64a..d7b304fa08 100644 --- a/builtin/credential.c +++ b/builtin/credential.c @@ -4,7 +4,7 @@ #include "config.h" static const char usage_msg[] = - "git credential [fill|approve|reject]"; + "git credential (fill|approve|reject)"; int cmd_credential(int argc, const char **argv, const char *prefix) { |