summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-02-15 09:44:20 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-02-15 09:44:20 (GMT)
commit7b83a9243147a8cec4f556af1d29f2cc21c12518 (patch)
tree877612c40d73ff0d409fb7ad09aac76ca96e424a /Documentation
parent160d2bc35382fb23beb99457e9111d15554bf223 (diff)
parent31ca3ac30fe3c2583881a74ef346911c8fba478f (diff)
downloadgit-7b83a9243147a8cec4f556af1d29f2cc21c12518.zip
git-7b83a9243147a8cec4f556af1d29f2cc21c12518.tar.gz
git-7b83a9243147a8cec4f556af1d29f2cc21c12518.tar.bz2
Merge branch 'ff/submodule-no-fetch'
* ff/submodule-no-fetch: submodule: add --no-fetch parameter to update command
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/git-submodule.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/Documentation/git-submodule.txt b/Documentation/git-submodule.txt
index 2f207fb..3b8df44 100644
--- a/Documentation/git-submodule.txt
+++ b/Documentation/git-submodule.txt
@@ -12,7 +12,7 @@ SYNOPSIS
'git submodule' [--quiet] add [-b branch] [--] <repository> <path>
'git submodule' [--quiet] status [--cached] [--] [<path>...]
'git submodule' [--quiet] init [--] [<path>...]
-'git submodule' [--quiet] update [--init] [--] [<path>...]
+'git submodule' [--quiet] update [--init] [-N|--no-fetch] [--] [<path>...]
'git submodule' [--quiet] summary [--summary-limit <n>] [commit] [--] [<path>...]
'git submodule' [--quiet] foreach <command>
'git submodule' [--quiet] sync [--] [<path>...]
@@ -172,6 +172,11 @@ OPTIONS
(the default). This limit only applies to modified submodules. The
size is always limited to 1 for added/deleted/typechanged submodules.
+-N::
+--no-fetch::
+ This option is only valid for the update command.
+ Don't fetch new objects from the remote site.
+
<path>...::
Paths to submodule(s). When specified this will restrict the command
to only operate on the submodules found at the specified paths.