aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/git-push.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-06-05 14:56:48 -0700
committerJunio C Hamano <gitster@pobox.com>2013-06-05 14:56:48 -0700
commit3f261c092fc2c1d1b9c47c5118db141bd37a7709 (patch)
tree4d9620c7bc2a01d6bcdabefa3ece2f5ab646d41f /Documentation/git-push.txt
parent8cb9b5f787957460e48c7b376f2c219b7130080d (diff)
parent90d32d1ffa36390177990cb92e4e2a68c5ec4092 (diff)
downloadgit-3f261c092fc2c1d1b9c47c5118db141bd37a7709.tar.gz
Merge branch 'tr/push-no-verify-doc'
"git push --[no-]verify" was not documented. * tr/push-no-verify-doc: Document push --no-verify
Diffstat (limited to 'Documentation/git-push.txt')
-rw-r--r--Documentation/git-push.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/Documentation/git-push.txt b/Documentation/git-push.txt
index d51481394c..df5be268ba 100644
--- a/Documentation/git-push.txt
+++ b/Documentation/git-push.txt
@@ -11,7 +11,7 @@ SYNOPSIS
[verse]
'git push' [--all | --mirror | --tags] [--follow-tags] [-n | --dry-run] [--receive-pack=<git-receive-pack>]
[--repo=<repository>] [-f | --force] [--prune] [-v | --verbose] [-u | --set-upstream]
- [<repository> [<refspec>...]]
+ [--no-verify] [<repository> [<refspec>...]]
DESCRIPTION
-----------
@@ -195,6 +195,11 @@ useful if you write an alias or script around 'git push'.
be pushed. If on-demand was not able to push all necessary
revisions it will also be aborted and exit with non-zero status.
+--[no-]verify::
+ Toggle the pre-push hook (see linkgit:githooks[5]). The
+ default is \--verify, giving the hook a chance to prevent the
+ push. With \--no-verify, the hook is bypassed completely.
+
include::urls-remotes.txt[]