diff options
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 2254bac16..365cfd410 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. |