diff options
author | Junio C Hamano <junkio@cox.net> | 2007-01-16 11:46:03 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-01-16 11:46:03 -0800 |
commit | dc36f26525a5f94fbb1dddc3ae342e6bc638258c (patch) | |
tree | 57b067d900efdfc45e094b00ac5e09ad59f747ce /Documentation | |
parent | 5214f7704474553d8d933d8055db410106d8581e (diff) | |
download | git-dc36f26525a5f94fbb1dddc3ae342e6bc638258c.tar.gz git-dc36f26525a5f94fbb1dddc3ae342e6bc638258c.tar.xz |
git-push documentation: remaining bits
Mention --thin, --no-thin, --repo and -v.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-push.txt | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Documentation/git-push.txt b/Documentation/git-push.txt index a19631d4b..3e8dbcf93 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] [--exec=<receive-pack>] [-f | --force] <repository> <refspec>... +'git-push' [--all] [--tags] [--exec=<receive-pack>] [--repo=all] [-f | --force] [-v] [<repository> <refspec>...] DESCRIPTION ----------- @@ -79,6 +79,18 @@ the remote repository. This flag disables the check. This can cause the remote repository to lose commits; use it with care. +\--repo=<repo>:: + When no repository is specified the command defaults to + "origin"; this overrides it. + +\--thin, \--no-thin:: + These options are passed to `git-send-pack`. Thin + transfer spends extra cycles to minimize the number of + objects to be sent and meant to be used on slower connection. + +-v:: + Run verbosely. + include::urls.txt[] Author |