diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-02-15 14:56:40 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-02-15 14:56:40 -0800 |
commit | 3e23116d1f77f73714c67fe546d879f4bbb633a0 (patch) | |
tree | bbab8afacd92b03bd034d50c91b646f1d9a3f3e2 /Documentation | |
parent | Merge branch 'jk/doc-remote-helpers-markup-fix' (diff) | |
parent | docs/git-submodule: fix unbalanced quote (diff) | |
download | tgif-3e23116d1f77f73714c67fe546d879f4bbb633a0.tar.xz |
Merge branch 'jk/doc-submodule-markup-fix'
Doc markup fix.
* jk/doc-submodule-markup-fix:
docs/git-submodule: fix unbalanced quote
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-submodule.txt | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Documentation/git-submodule.txt b/Documentation/git-submodule.txt index 4a4cede144..8acc72ebb8 100644 --- a/Documentation/git-submodule.txt +++ b/Documentation/git-submodule.txt @@ -221,9 +221,12 @@ foreach [--recursive] <command>:: the processing to terminate. This can be overridden by adding '|| :' to the end of the command. + -As an example, +git submodule foreach \'echo $path {backtick}git -rev-parse HEAD{backtick}'+ will show the path and currently checked out -commit for each submodule. +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`' +-------------- sync [--recursive] [--] [<path>...]:: Synchronizes submodules' remote URL configuration setting |