summaryrefslogtreecommitdiffstats
path: root/git-push.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-12-22 15:45:23 -0800
committerJunio C Hamano <gitster@pobox.com>2015-12-22 15:45:23 -0800
commit409a33a4d4cf906e4abcfd1cd6fd97377e7ddc75 (patch)
tree1c9cbad93d16cd69b74e08b0ab73104fc909f605 /git-push.txt
parent98be6ac588de4a81d98a724b025ad3e5baf68a43 (diff)
downloadgit-htmldocs-409a33a4d4cf906e4abcfd1cd6fd97377e7ddc75.tar.gz
Autogenerated HTML docs for v2.7.0-rc2
Diffstat (limited to 'git-push.txt')
-rw-r--r--git-push.txt24
1 files changed, 14 insertions, 10 deletions
diff --git a/git-push.txt b/git-push.txt
index 85a4d7d6d..4c775bcec 100644
--- a/git-push.txt
+++ b/git-push.txt
@@ -257,16 +257,20 @@ origin +master` to force a push to the `master` branch). See the
is specified. This flag forces progress status even if the
standard error stream is not directed to a terminal.
---recurse-submodules=check|on-demand::
- Make sure all submodule commits used by the revisions to be
- pushed are available on a remote-tracking branch. If 'check' is
- used Git will verify that all submodule commits that changed in
- the revisions to be pushed are available on at least one remote
- of the submodule. If any commits are missing the push will be
- aborted and exit with non-zero status. If 'on-demand' is used
- all submodules that changed in the revisions to be pushed will
- 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-recurse-submodules::
+--recurse-submodules=check|on-demand|no::
+ May be used to make sure all submodule commits used by the
+ revisions to be pushed are available on a remote-tracking branch.
+ If 'check' is used Git will verify that all submodule commits that
+ changed in the revisions to be pushed are available on at least one
+ remote of the submodule. If any commits are missing the push will
+ be aborted and exit with non-zero status. If 'on-demand' is used
+ all submodules that changed in the revisions to be pushed will be
+ pushed. If on-demand was not able to push all necessary revisions
+ it will also be aborted and exit with non-zero status. A value of
+ 'no' or using '--no-recurse-submodules' can be used to override the
+ push.recurseSubmodules configuration variable when no submodule
+ recursion is required.
--[no-]verify::
Toggle the pre-push hook (see linkgit:githooks[5]). The