diff options
author | Kyle Meyer <kyle@kyleam.com> | 2020-01-31 18:08:43 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-01-31 21:57:18 +0100 |
commit | 04e5b3f0b43db43b3484f72058c080ac1a4a9b38 (patch) | |
tree | 99f2fcf7ef9fbdad75c66596f9e04dac904872a2 /Documentation/git-submodule.txt | |
parent | msvc: accommodate for vcpkg's upgrade to OpenSSL v1.1.x (diff) | |
download | git-04e5b3f0b43db43b3484f72058c080ac1a4a9b38.tar.xz git-04e5b3f0b43db43b3484f72058c080ac1a4a9b38.zip |
submodule foreach: replace $path with $sm_path in example
f0fd0dc5c5 (submodule foreach: document '$sm_path' instead of '$path',
2018-05-08) updated the documentation to advise callers to favor
$sm_path over the deprecated synonym $path. However, the example in
that section still uses $path. Update it to use $sm_path.
Signed-off-by: Kyle Meyer <kyle@kyleam.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-submodule.txt')
-rw-r--r-- | Documentation/git-submodule.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/git-submodule.txt b/Documentation/git-submodule.txt index 1f46380af2..fbcc455cae 100644 --- a/Documentation/git-submodule.txt +++ b/Documentation/git-submodule.txt @@ -219,7 +219,7 @@ As an example, the command below will show the path and currently checked out commit for each submodule: + -------------- -git submodule foreach 'echo $path `git rev-parse HEAD`' +git submodule foreach 'echo $sm_path `git rev-parse HEAD`' -------------- sync [--recursive] [--] [<path>...]:: |