<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/Documentation/git-submodule.txt, branch v2.20.2</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://git.shady.money/git/atom?h=v2.20.2</id>
<link rel='self' href='https://git.shady.money/git/atom?h=v2.20.2'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/'/>
<updated>2018-06-25T20:22:35Z</updated>
<entry>
<title>Merge branch 'pc/submodule-helper-foreach'</title>
<updated>2018-06-25T20:22:35Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2018-06-25T20:22:35Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=ea27893a65cc41cad2710466aa6a58866ff22f1e'/>
<id>urn:sha1:ea27893a65cc41cad2710466aa6a58866ff22f1e</id>
<content type='text'>
The bulk of "git submodule foreach" has been rewritten in C.

* pc/submodule-helper-foreach:
  submodule: port submodule subcommand 'foreach' from shell to C
  submodule foreach: document variable '$displaypath'
  submodule foreach: document '$sm_path' instead of '$path'
  submodule foreach: correct '$path' in nested submodules from a subdirectory
</content>
</entry>
<entry>
<title>Merge branch 'rd/doc-remote-tracking-with-hyphen'</title>
<updated>2018-06-18T17:18:43Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2018-06-18T17:18:43Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=929c0975482e78c4bd680b010a8ceac6c31160a0'/>
<id>urn:sha1:929c0975482e78c4bd680b010a8ceac6c31160a0</id>
<content type='text'>
Doc update.

* rd/doc-remote-tracking-with-hyphen:
  Use hyphenated "remote-tracking branch" (docs and comments)
</content>
</entry>
<entry>
<title>Use hyphenated "remote-tracking branch" (docs and comments)</title>
<updated>2018-06-13T16:57:09Z</updated>
<author>
<name>Robert P. J. Day</name>
<email>rpjday@crashcourse.ca</email>
</author>
<published>2018-06-07T11:53:36Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=30aa96cdf8dc8d93865cbb26f3692a87cb065f86'/>
<id>urn:sha1:30aa96cdf8dc8d93865cbb26f3692a87cb065f86</id>
<content type='text'>
Use the obvious consensus of hyphenated "remote-tracking branch", and
fix an obvious typo, all in documentation and comments.

Signed-off-by: Robert P. J. Day &lt;rpjday@crashcourse.ca&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'cf/submodule-progress-dissociate'</title>
<updated>2018-05-30T05:04:09Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2018-05-30T05:04:09Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=2a98a8794eac7089d4e44f51b19e358a14eb6d3e'/>
<id>urn:sha1:2a98a8794eac7089d4e44f51b19e358a14eb6d3e</id>
<content type='text'>
"git submodule update" and "git submodule add" supported the
"--reference" option to borrow objects from a neighbouring local
repository like "git clone" does, but lacked the more recent
invention "--dissociate".  Also "git submodule add" has been taught
to take the "--progress" option.

* cf/submodule-progress-dissociate:
  submodule: add --dissociate option to add/update commands
  submodule: add --progress option to add command
  submodule: clean up substitutions in script
</content>
</entry>
<entry>
<title>submodule: add --dissociate option to add/update commands</title>
<updated>2018-05-22T03:22:42Z</updated>
<author>
<name>Casey Fitzpatrick</name>
<email>kcghost@gmail.com</email>
</author>
<published>2018-05-03T10:53:46Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=a0ef29341accafa51345e90225d87f6a0d297b7b'/>
<id>urn:sha1:a0ef29341accafa51345e90225d87f6a0d297b7b</id>
<content type='text'>
Add --dissociate option to add and update commands, both clone helper commands
that already have the --reference option --dissociate pairs with.

Signed-off-by: Casey Fitzpatrick &lt;kcghost@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>submodule: add --progress option to add command</title>
<updated>2018-05-22T03:17:10Z</updated>
<author>
<name>Casey Fitzpatrick</name>
<email>kcghost@gmail.com</email>
</author>
<published>2018-05-03T10:53:45Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=6d33e1c28210bacf2e664b55b2feb255991e0ad5'/>
<id>urn:sha1:6d33e1c28210bacf2e664b55b2feb255991e0ad5</id>
<content type='text'>
The '--progress' was introduced in 72c5f88311d (clone: pass --progress
decision to recursive submodules, 2016-09-22) to fix the progress reporting
of the clone command. Also add the progress option to the 'submodule add'
command. The update command already supports the progress flag, but it
is not documented.

Signed-off-by: Casey Fitzpatrick &lt;kcghost@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>submodule foreach: document variable '$displaypath'</title>
<updated>2018-05-09T03:37:00Z</updated>
<author>
<name>Prathamesh Chavan</name>
<email>pc44800@gmail.com</email>
</author>
<published>2018-05-09T00:29:51Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=b6f7ac8fd561d6df9c76009898daf96a93765ffc'/>
<id>urn:sha1:b6f7ac8fd561d6df9c76009898daf96a93765ffc</id>
<content type='text'>
It was observed that the variable '$displaypath' was accessible but
undocumented. Hence, document it.

Discussed-with: Ramsay Jones &lt;ramsay@ramsayjones.plus.com&gt;
Signed-off-by: Stefan Beller &lt;sbeller@google.com&gt;
Signed-off-by: Prathamesh Chavan &lt;pc44800@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>submodule foreach: document '$sm_path' instead of '$path'</title>
<updated>2018-05-09T03:37:00Z</updated>
<author>
<name>Prathamesh Chavan</name>
<email>pc44800@gmail.com</email>
</author>
<published>2018-05-09T00:29:50Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=f0fd0dc5c5fcc066fc2e0b7dc1e809cb2d219ee3'/>
<id>urn:sha1:f0fd0dc5c5fcc066fc2e0b7dc1e809cb2d219ee3</id>
<content type='text'>
As using a variable '$path' may be harmful to users due to
capitalization issues, see 64394e3ae9 (git-submodule.sh: Don't
use $path variable in eval_gettext string, 2012-04-17). Adjust
the documentation to advocate for using $sm_path,  which contains
the same value. We still make the 'path' variable available and
document it as a deprecated synonym of 'sm_path'.

Discussed-with: Ramsay Jones &lt;ramsay@ramsayjones.plus.com&gt;
Signed-off-by: Stefan Beller &lt;sbeller@google.com&gt;
Signed-off-by: Prathamesh Chavan &lt;pc44800@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>git-submodule.txt: quote usage in monospace, drop backslash</title>
<updated>2018-04-18T03:49:26Z</updated>
<author>
<name>Martin Ågren</name>
<email>martin.agren@gmail.com</email>
</author>
<published>2018-04-17T19:15:29Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=4c57a4f8fedddff474e8d1efb11003c75d088341'/>
<id>urn:sha1:4c57a4f8fedddff474e8d1efb11003c75d088341</id>
<content type='text'>
We tend to quote command line examples using `` to set them in a
monospace font. The immediate motivation for this patch is to get rid of
another instance of \--. As noted in the previous commits, \-- has a
tendency of rendering badly. Here, it renders ok (at least with
AsciiDoc 8.6.9 and Asciidoctor 1.5.4), but by getting rid of this
instance, we reduce the chances of \-- cropping up in places where it
matters more.

Signed-off-by: Martin Ågren &lt;martin.agren@gmail.com&gt;
</content>
</entry>
<entry>
<title>Doc/git-submodule: improve readability and grammar of a sentence</title>
<updated>2018-01-16T19:34:36Z</updated>
<author>
<name>Kaartic Sivaraam</name>
<email>kaartic.sivaraam@gmail.com</email>
</author>
<published>2018-01-14T17:37:37Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=e1b3f3dd38c05187ed44939b9c67e96f0ce32d50'/>
<id>urn:sha1:e1b3f3dd38c05187ed44939b9c67e96f0ce32d50</id>
<content type='text'>
While at it, correctly quote important words.

Signed-off-by: Kaartic Sivaraam &lt;kaartic.sivaraam@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
</feed>
