<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/Documentation/git-submodule.txt, branch v2.18.2</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://git.shady.money/git/atom?h=v2.18.2</id>
<link rel='self' href='https://git.shady.money/git/atom?h=v2.18.2'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/'/>
<updated>2018-06-18T17:18:43Z</updated>
<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>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>
<entry>
<title>Merge branch 'sb/submodule-doc'</title>
<updated>2017-07-12T22:18:21Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2017-07-12T22:18:21Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=b5fe65fe93db1931501027a322ecb6a9f17f56e7'/>
<id>urn:sha1:b5fe65fe93db1931501027a322ecb6a9f17f56e7</id>
<content type='text'>
Doc update.

* sb/submodule-doc:
  submodules: overhaul documentation
</content>
</entry>
<entry>
<title>Merge branch 'vs/typofixes'</title>
<updated>2017-06-30T20:45:25Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2017-06-30T20:45:25Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=748cffc22bbe769b3b2fba90ae98db4719b90bb4'/>
<id>urn:sha1:748cffc22bbe769b3b2fba90ae98db4719b90bb4</id>
<content type='text'>
Many typofixes.

* vs/typofixes:
  Spelling fixes
</content>
</entry>
<entry>
<title>Spelling fixes</title>
<updated>2017-06-27T17:35:49Z</updated>
<author>
<name>Ville Skyttä</name>
<email>ville.skytta@iki.fi</email>
</author>
<published>2017-06-25T10:20:41Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=64127575149e35b409bc2f78962f86507346d604'/>
<id>urn:sha1:64127575149e35b409bc2f78962f86507346d604</id>
<content type='text'>
Signed-off-by: Ville Skyttä &lt;ville.skytta@iki.fi&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
</feed>
