diff options
author | Junio C Hamano <junkio@cox.net> | 2006-01-15 23:27:34 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-01-15 23:59:12 -0800 |
commit | 42301e34a2736b091738d4ca6a23fd90bd1f1837 (patch) | |
tree | 6ac2b20f996afda0055f2d7d43fb4f47b8ee0361 /Documentation/git-push.txt | |
parent | fec9ebf16c948bcb4a8b88d0173ee63584bcde76 (diff) | |
download | git-42301e34a2736b091738d4ca6a23fd90bd1f1837.tar.gz |
git-push: fix --tags and document it.
Previously 'git-push --tags dst', used information from
remotes/dst to determine which refs to push; this patch corrects
it, and also documents the --tags option.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation/git-push.txt')
-rw-r--r-- | Documentation/git-push.txt | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Documentation/git-push.txt b/Documentation/git-push.txt index 2254bac16e..365cfd4105 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] [--force] <repository> <refspec>... +'git-push' [--all] [--tags] [--force] <repository> <refspec>... DESCRIPTION ----------- @@ -29,6 +29,11 @@ include::pull-fetch-param.txt[] Instead of naming each ref to push, specifies all refs to be pushed. +\--tags:: + All refs under `$GIT_DIR/refs/tags` are pushed, in + addition to refspecs explicitly listed on the command + line. + -f, \--force:: Usually, the command refuses to update a local ref that is not an ancestor of the remote ref used to overwrite it. |