Implemented and documented new option. Signed-off-by: Jari Aalto <jari.aalto@xxxxxxxxx> --- Documentation/git-push.txt | 4 ++-- builtin-push.c | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Documentation/git-push.txt b/Documentation/git-push.txt index f8cc2b5..fb9dc7f 100644 --- a/Documentation/git-push.txt +++ b/Documentation/git-push.txt @@ -8,7 +8,7 @@ git-push - Update remote refs along with associated objects SYNOPSIS -------- -'git-push' [--all] [--tags] [--receive-pack=<git-receive-pack>] [--repo=all] [-f | --force] [-v] [<repository> <refspec>...] +'git-push' [--all] [--tags] [--receive-pack=<git-receive-pack>] [--repo=all] [-f | --force] [-v | --verbose] [<repository> <refspec>...] DESCRIPTION ----------- @@ -91,7 +91,7 @@ the remote repository. transfer spends extra cycles to minimize the number of objects to be sent and meant to be used on slower connection. --v:: +-v, \--verbose:: Run verbosely. include::urls.txt[] diff --git a/builtin-push.c b/builtin-push.c index cb78401..613f6c2 100644 --- a/builtin-push.c +++ b/builtin-push.c @@ -8,7 +8,7 @@ #define MAX_URI (16) -static const char push_usage[] = "git-push [--all] [--tags] [--receive-pack=<git-receive-pack>] [--repo=all] [-f | --force] [-v] [<repository> <refspec>...]"; +static const char push_usage[] = "git-push [--all] [--tags] [--receive-pack=<git-receive-pack>] [--repo=all] [-f | --force] [-v | --verbose] [<repository> <refspec>...]"; static int all, tags, force, thin = 1, verbose; static const char *receivepack; @@ -372,7 +372,8 @@ int cmd_push(int argc, const char **argv, const char *prefix) i++; break; } - if (!strcmp(arg, "-v")) { + if (!strcmp(arg, "-v") || + !strcmp(arg, "--verbose")) { verbose=1; continue; } -- 1.5.3.rc5 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html