summaryrefslogtreecommitdiffstats
path: root/config.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 /config.txt
parent98be6ac588de4a81d98a724b025ad3e5baf68a43 (diff)
downloadgit-htmldocs-409a33a4d4cf906e4abcfd1cd6fd97377e7ddc75.tar.gz
Autogenerated HTML docs for v2.7.0-rc2
Diffstat (limited to 'config.txt')
-rw-r--r--config.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/config.txt b/config.txt
index 2d06b11f2..f61788668 100644
--- a/config.txt
+++ b/config.txt
@@ -2229,6 +2229,20 @@ push.gpgSign::
override a value from a lower-priority config file. An explicit
command-line flag always overrides this config option.
+push.recurseSubmodules::
+ Make sure all submodule commits used by the revisions to be pushed
+ are available on a remote-tracking branch. If the value is 'check'
+ then 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 the value is 'on-demand' then 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. If the value
+ is 'no' then default behavior of ignoring submodules when pushing
+ is retained. You may override this configuration at time of push by
+ specifying '--recurse-submodules=check|on-demand|no'.
+
rebase.stat::
Whether to show a diffstat of what changed upstream since the last
rebase. False by default.