summaryrefslogtreecommitdiffstats
path: root/gitsubmodules.txt
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-10-05 15:21:55 -0700
committerJunio C Hamano <gitster@pobox.com>2020-10-05 15:21:55 -0700
commitd12815176f71c07e3844623f2c9c1ffc75a44574 (patch)
tree412c3124c3211cddd1af508e09b250dfe5755e77 /gitsubmodules.txt
parent36ebb0e3ab4a7aa8b34196786a989cf6a523c648 (diff)
downloadgit-htmldocs-d12815176f71c07e3844623f2c9c1ffc75a44574.tar.gz
Autogenerated HTML docs for v2.29.0-rc0
Diffstat (limited to 'gitsubmodules.txt')
-rw-r--r--gitsubmodules.txt23
1 files changed, 13 insertions, 10 deletions
diff --git a/gitsubmodules.txt b/gitsubmodules.txt
index f9f4e65c9..891c8da4f 100644
--- a/gitsubmodules.txt
+++ b/gitsubmodules.txt
@@ -225,10 +225,10 @@ presence of the .url field.
Workflow for a third party library
----------------------------------
- # add a submodule
+ # Add a submodule
git submodule add <url> <path>
- # occasionally update the submodule to a new version:
+ # Occasionally update the submodule to a new version:
git -C <path> checkout <new version>
git add <path>
git commit -m "update submodule to new version"
@@ -246,20 +246,23 @@ Workflow for an artificially split repo
# regular commands recurse into submodules by default
git config --global submodule.recurse true
- # Unlike the other commands below clone still needs
+ # Unlike most other commands below, clone still needs
# its own recurse flag:
git clone --recurse <URL> <directory>
cd <directory>
# Get to know the code:
git grep foo
- git ls-files
+ git ls-files --recurse-submodules
+
+[NOTE]
+`git ls-files` also requires its own `--recurse-submodules` flag.
# Get new code
git fetch
git pull --rebase
- # change worktree
+ # Change worktree
git checkout
git reset
@@ -267,12 +270,12 @@ Implementation details
----------------------
When cloning or pulling a repository containing submodules the submodules
-will not be checked out by default; You can instruct 'clone' to recurse
-into submodules. The 'init' and 'update' subcommands of 'git submodule'
+will not be checked out by default; you can instruct `clone` to recurse
+into submodules. The `init` and `update` subcommands of `git submodule`
will maintain submodules checked out and at an appropriate revision in
-your working tree. Alternatively you can set 'submodule.recurse' to have
-'checkout' recursing into submodules (note that 'submodule.recurse' also
-affects other git commands, see linkgit:git-config[1] for a complete list).
+your working tree. Alternatively you can set `submodule.recurse` to have
+`checkout` recursing into submodules (note that `submodule.recurse` also
+affects other Git commands, see linkgit:git-config[1] for a complete list).
SEE ALSO