* [PATCH] remote: update builtin usage
@ 2012-04-07 14:25 Michael Schubert
2012-04-09 22:06 ` Junio C Hamano
0 siblings, 1 reply; 2+ messages in thread
From: Michael Schubert @ 2012-04-07 14:25 UTC (permalink / raw)
To: git; +Cc: Junio C Hamano
Add missing options "--tags|--no-tags" and "--push".
Signed-off-by: Michael Schubert <mschub@elegosoft.com>
---
builtin/remote.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/builtin/remote.c b/builtin/remote.c
index fec92bc..b5645fe 100644
--- a/builtin/remote.c
+++ b/builtin/remote.c
@@ -9,7 +9,7 @@
static const char * const builtin_remote_usage[] = {
"git remote [-v | --verbose]",
- "git remote add [-t <branch>] [-m <master>] [-f] [--mirror=<fetch|push>] <name> <url>",
+ "git remote add [-t <branch>] [-m <master>] [-f] [--tags|--no-tags] [--mirror=<fetch|push>] <name> <url>",
"git remote rename <old> <new>",
"git remote rm <name>",
"git remote set-head <name> (-a | -d | <branch>)",
@@ -17,7 +17,7 @@ static const char * const builtin_remote_usage[] = {
"git remote prune [-n | --dry-run] <name>",
"git remote [-v | --verbose] update [-p | --prune] [(<group> | <remote>)...]",
"git remote set-branches [--add] <name> <branch>...",
- "git remote set-url <name> <newurl> [<oldurl>]",
+ "git remote set-url [--push] <name> <newurl> [<oldurl>]",
"git remote set-url --add <name> <newurl>",
"git remote set-url --delete <name> <url>",
NULL
--
1.7.10.dirty
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] remote: update builtin usage
2012-04-07 14:25 [PATCH] remote: update builtin usage Michael Schubert
@ 2012-04-09 22:06 ` Junio C Hamano
0 siblings, 0 replies; 2+ messages in thread
From: Junio C Hamano @ 2012-04-09 22:06 UTC (permalink / raw)
To: Michael Schubert; +Cc: git
Michael Schubert <mschub@elegosoft.com> writes:
> Add missing options "--tags|--no-tags" and "--push".
>
> Signed-off-by: Michael Schubert <mschub@elegosoft.com>
> ---
> builtin/remote.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/builtin/remote.c b/builtin/remote.c
> index fec92bc..b5645fe 100644
> --- a/builtin/remote.c
> +++ b/builtin/remote.c
> @@ -9,7 +9,7 @@
>
> static const char * const builtin_remote_usage[] = {
> "git remote [-v | --verbose]",
> - "git remote add [-t <branch>] [-m <master>] [-f] [--mirror=<fetch|push>] <name> <url>",
> + "git remote add [-t <branch>] [-m <master>] [-f] [--tags|--no-tags] [--mirror=<fetch|push>] <name> <url>",
> "git remote rename <old> <new>",
> "git remote rm <name>",
> "git remote set-head <name> (-a | -d | <branch>)",
> @@ -17,7 +17,7 @@ static const char * const builtin_remote_usage[] = {
> "git remote prune [-n | --dry-run] <name>",
> "git remote [-v | --verbose] update [-p | --prune] [(<group> | <remote>)...]",
> "git remote set-branches [--add] <name> <branch>...",
> - "git remote set-url <name> <newurl> [<oldurl>]",
> + "git remote set-url [--push] <name> <newurl> [<oldurl>]",
> "git remote set-url --add <name> <newurl>",
> "git remote set-url --delete <name> <url>",
> NULL
Hrm. While this may not be _wrong_ per-se, it strikes me odd that
builtin_remote_usage[] is more or less a superset of the subcommand
specific usage text, e.g. builtin_remote_seturl_usage[], etc., but still
need to be manually defined like this. That always leaves a risk that the
descriptions would drift apart between the two places.
For example, builtin_remote_setbranches_usage[] has these two:
static const char * const builtin_remote_setbranches_usage[] = {
"git remote set-branches <name> <branch>...",
"git remote set-branches --add <name> <branch>...",
NULL
};
where the above has only one, with an optional "[--add]".
There must be a better way to do this.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-04-09 22:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-07 14:25 [PATCH] remote: update builtin usage Michael Schubert
2012-04-09 22:06 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).