<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/Documentation/git-remote.txt, branch v2.21.3</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://git.shady.money/git/atom?h=v2.21.3</id>
<link rel='self' href='https://git.shady.money/git/atom?h=v2.21.3'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/'/>
<updated>2018-06-04T12:39:49Z</updated>
<entry>
<title>Merge branch 'nd/remote-update-doc'</title>
<updated>2018-06-04T12:39:49Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2018-06-04T12:39:48Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=643a9ea3e0d2937155bbce43e17bb132dc7166ff'/>
<id>urn:sha1:643a9ea3e0d2937155bbce43e17bb132dc7166ff</id>
<content type='text'>
"git remote update" can take both a single remote nickname and a
nickname for remote groups, but only one of them was documented.

* nd/remote-update-doc:
  remote: doc typofix
  remote.txt: update documentation for 'update' command
</content>
</entry>
<entry>
<title>remote: doc typofix</title>
<updated>2018-06-04T11:04:33Z</updated>
<author>
<name>Duy Nguyen</name>
<email>pclouds@gmail.com</email>
</author>
<published>2018-05-30T15:37:01Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=a97447a42a199c4f359608721c82e88cefb43a8e'/>
<id>urn:sha1:a97447a42a199c4f359608721c82e88cefb43a8e</id>
<content type='text'>
Signed-off-by: Nguyễn Thái Ngọc Duy &lt;pclouds@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>remote.txt: update documentation for 'update' command</title>
<updated>2018-06-01T01:46:03Z</updated>
<author>
<name>Duy Nguyen</name>
<email>pclouds@gmail.com</email>
</author>
<published>2018-05-30T15:37:01Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=86f0b3727ced5db72ebbbd93f930671bfb9ab7be'/>
<id>urn:sha1:86f0b3727ced5db72ebbbd93f930671bfb9ab7be</id>
<content type='text'>
Commit b344e1614b (git remote update: Fallback to remote if group does
not exist - 2009-04-06) lets "git remote update" accept individual
remotes as well. Previously this command only accepted remote
groups. The commit updates the command syntax but not the actual
document of this subcommand. Update it.

Signed-off-by: Nguyễn Thái Ngọc Duy &lt;pclouds@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>doc: keep first level section header in upper case</title>
<updated>2018-05-02T08:03:33Z</updated>
<author>
<name>Nguyễn Thái Ngọc Duy</name>
<email>pclouds@gmail.com</email>
</author>
<published>2018-04-30T15:35:33Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=76a8788c141e9d4e2713acaa7886475fb6b27ca5'/>
<id>urn:sha1:76a8788c141e9d4e2713acaa7886475fb6b27ca5</id>
<content type='text'>
When formatted as a man page, 1st section header is always in upper
case even if we write it otherwise. Make all 1st section headers
uppercase to keep it close to the final output.

This does affect html since case is kept there, but I still think it's
a good idea to maintain a consistent style for 1st section headers.

Some sections perhaps should become second sections instead, where
case is kept, and for better organization. I will update if anyone has
suggestions about this.

While at there I also make some header more consistent (e.g. examples
vs example) and fix a couple minor things here and there.

Signed-off-by: Nguyễn Thái Ngọc Duy &lt;pclouds@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>git remote doc: correct dangerous lies about what prune does</title>
<updated>2018-02-09T21:10:12Z</updated>
<author>
<name>Ævar Arnfjörð Bjarmason</name>
<email>avarab@gmail.com</email>
</author>
<published>2018-02-09T20:32:12Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=d0e07472faa938c83e9b1f76567f16614672668c'/>
<id>urn:sha1:d0e07472faa938c83e9b1f76567f16614672668c</id>
<content type='text'>
The "git remote prune &lt;name&gt;" command uses the same machinery as "git
fetch &lt;name&gt; --prune", and shares all the same caveats, but its
documentation has suggested that it'll just "delete stale
remote-tracking branches under &lt;name&gt;".

This isn't true, and hasn't been true since at least v1.8.5.6 (the
oldest version I could be bothered to test).

E.g. if "refs/tags/*:refs/tags/*" is explicitly set in the refspec of
the remote, it'll delete all local tags &lt;name&gt; doesn't know about.

Instead, briefly give the reader just enough of a hint that this
option might constitute a shotgun aimed at their foot, and point them
to the new PRUNING section in the git-fetch documentation which
explains all the nuances of what this facility does.

See "[BUG] git remote prune removes local tags, depending on fetch
config" (CACi5S_39wNrbfjLfn0xhCY+uewtFN2YmnAcRc86z6pjUTjWPHQ@mail.gmail.com)
by Michael Giuffrida for the initial report.

Reported-by: Michael Giuffrida &lt;michaelpg@chromium.org&gt;
Signed-off-by: Ævar Arnfjörð Bjarmason &lt;avarab@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>doc: typeset long command-line options as literal</title>
<updated>2016-06-28T15:36:45Z</updated>
<author>
<name>Matthieu Moy</name>
<email>Matthieu.Moy@imag.fr</email>
</author>
<published>2016-06-28T11:40:11Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=bcf9626a71a0d90be65acc265ad0ec488d95d6ed'/>
<id>urn:sha1:bcf9626a71a0d90be65acc265ad0ec488d95d6ed</id>
<content type='text'>
Similarly to the previous commit, use backquotes instead of
forward-quotes, for long options.

This was obtained with:

  perl -pi -e "s/'(--[a-z][a-z=&lt;&gt;-]*)'/\`\$1\`/g" *.txt

and manual tweak to remove false positive in ascii-art (o'--o'--o' to
describe rewritten history).

Signed-off-by: Matthieu Moy &lt;Matthieu.Moy@imag.fr&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'xf/user-manual-markup'</title>
<updated>2015-10-29T20:59:14Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2015-10-29T20:59:14Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=6abe8f4439a714c7587c45a3e115b75a6a889131'/>
<id>urn:sha1:6abe8f4439a714c7587c45a3e115b75a6a889131</id>
<content type='text'>
AsciiDoc markup fixes.

* xf/user-manual-markup:
  Documentation: match undefline with the text in old release notes
  Documentation: match underline with the text
  Documentation: fix header markup
</content>
</entry>
<entry>
<title>Documentation: match underline with the text</title>
<updated>2015-10-22T17:16:12Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2015-10-22T17:09:07Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=142d035a022fb76c96877254e95aa70879332076'/>
<id>urn:sha1:142d035a022fb76c96877254e95aa70879332076</id>
<content type='text'>
Even though AsciiDoc is more lenient when deciding if an underline
is for the contents on the previous line to find section headers, we
should match the length of them for other formatters to help them.

Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>remote: add get-url subcommand</title>
<updated>2015-09-17T19:19:57Z</updated>
<author>
<name>Ben Boeckel</name>
<email>mathstuf@gmail.com</email>
</author>
<published>2015-09-16T01:53:47Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=96f78d39989d1fcf393d7bc42357467dd8cf0f15'/>
<id>urn:sha1:96f78d39989d1fcf393d7bc42357467dd8cf0f15</id>
<content type='text'>
Expanding `insteadOf` is a part of ls-remote --url and there is no way
to expand `pushInsteadOf` as well. Add a get-url subcommand to be able
to query both as well as a way to get all configured urls.

Signed-off-by: Ben Boeckel &lt;mathstuf@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Merge branch 'mg/doc-remote-tags-or-not'</title>
<updated>2015-03-06T23:02:28Z</updated>
<author>
<name>Junio C Hamano</name>
<email>gitster@pobox.com</email>
</author>
<published>2015-03-06T23:02:27Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=79de649c0f452c0366a7306819f10760f4ed8b92'/>
<id>urn:sha1:79de649c0f452c0366a7306819f10760f4ed8b92</id>
<content type='text'>
"git remote add" mentioned "--tags" and "--no-tags" and was not
clear that fetch from the remote in the future will use the default
behaviour when neither is given to override it.

* mg/doc-remote-tags-or-not:
  git-remote.txt: describe behavior without --tags and --no-tags
</content>
</entry>
</feed>
