<feed xmlns='http://www.w3.org/2005/Atom'>
<title>git/Documentation/git-fsck-objects.txt, branch v1.7.3.4</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/git/git.git/
</subtitle>
<id>https://git.shady.money/git/atom?h=v1.7.3.4</id>
<link rel='self' href='https://git.shady.money/git/atom?h=v1.7.3.4'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/'/>
<updated>2008-07-02T00:20:15Z</updated>
<entry>
<title>Documentation: be consistent about "git-" versus "git "</title>
<updated>2008-07-02T00:20:15Z</updated>
<author>
<name>Jonathan Nieder</name>
<email>jrnieder@uchicago.edu</email>
</author>
<published>2008-06-30T06:09:04Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=b1889c36d85514e5e70462294c561a02c2edfe2b'/>
<id>urn:sha1:b1889c36d85514e5e70462294c561a02c2edfe2b</id>
<content type='text'>
Since the git-* commands are not installed in $(bindir), using
"git-command &lt;parameters&gt;" in examples in the documentation is
not a good idea. On the other hand, it is nice to be able to
refer to each command using one hyphenated word. (There is no
escaping it, anyway: man page names cannot have spaces in them.)

This patch retains the dash in naming an operation, command,
program, process, or action. Complete command lines that can
be entered at a shell (i.e., without options omitted) are
made to use the dashless form.

The changes consist only of replacing some spaces with hyphens
and vice versa. After a "s/ /-/g", the unpatched and patched
versions are identical.

Signed-off-by: Jonathan Nieder &lt;jrnieder@uchicago.edu&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>Documentation: rename gitlink macro to linkgit</title>
<updated>2008-01-07T02:41:44Z</updated>
<author>
<name>Dan McGee</name>
<email>dpmcgee@gmail.com</email>
</author>
<published>2007-12-29T06:20:38Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=5162e69732d13dd079919a389a6ace8878aad716'/>
<id>urn:sha1:5162e69732d13dd079919a389a6ace8878aad716</id>
<content type='text'>
Between AsciiDoc 8.2.2 and 8.2.3, the following change was made to the stock
Asciidoc configuration:

@@ -149,7 +153,10 @@
 # Inline macros.
 # Backslash prefix required for escape processing.
 # (?s) re flag for line spanning.
-(?su)[\\]?(?P&lt;name&gt;\w(\w|-)*?):(?P&lt;target&gt;\S*?)(\[(?P&lt;attrlist&gt;.*?)\])=
+
+# Explicit so they can be nested.
+(?su)[\\]?(?P&lt;name&gt;(http|https|ftp|file|mailto|callto|image|link)):(?P&lt;target&gt;\S*?)(\[(?P&lt;attrlist&gt;.*?)\])=
+
 # Anchor: [[[id]]]. Bibliographic anchor.
 (?su)[\\]?\[\[\[(?P&lt;attrlist&gt;[\w][\w-]*?)\]\]\]=anchor3
 # Anchor: [[id,xreflabel]]

This default regex now matches explicit values, and unfortunately in this
case gitlink was being matched by just 'link', causing the wrong inline
macro template to be applied. By renaming the macro, we can avoid being
matched by the wrong regex.

Signed-off-by: Dan McGee &lt;dpmcgee@gmail.com&gt;
Signed-off-by: Junio C Hamano &lt;gitster@pobox.com&gt;
</content>
</entry>
<entry>
<title>git-fsck-objects is now synonym to git-fsck</title>
<updated>2007-01-29T00:33:58Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2007-01-29T00:33:58Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=df391b192d285646fe80ca4d3cfe3c0a3beb5989'/>
<id>urn:sha1:df391b192d285646fe80ca4d3cfe3c0a3beb5989</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Documentation: Spelling fixes</title>
<updated>2006-06-04T06:54:55Z</updated>
<author>
<name>Horst H. von Brand</name>
<email>vonbrand@inf.utfsm.cl</email>
</author>
<published>2006-06-03T20:27:26Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=abda1ef590d94a5e15e7ce3b685b5c092a790cfa'/>
<id>urn:sha1:abda1ef590d94a5e15e7ce3b685b5c092a790cfa</id>
<content type='text'>
Signed-off-by: Horst H. von Brand &lt;vonbrand@inf.utfsm.cl&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>fsck-objects: Remove --standalone</title>
<updated>2006-03-09T21:10:31Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2006-03-09T09:44:19Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=7aaa715d0abb12067504af08919197a67a68aca7'/>
<id>urn:sha1:7aaa715d0abb12067504af08919197a67a68aca7</id>
<content type='text'>
The fsck-objects command (back then it was called fsck-cache)
used to complain if objects referred to by files in .git/refs/
or objects stored in files under .git/objects/??/ were not found
as stand-alone SHA1 files (i.e.  found in alternate object pools
or packed archives stored under .git/objects/pack).  Back then,
packs and alternates were new curiosity and having everything as
loose objects were the norm.

When we adjusted the behaviour of fsck-cache to consider objects
found in packs are OK, we introduced the --standalone flag as a
backward compatibility measure.

It still correctly checks if your repository is complete and
consists only of loose objects, so in that sense it is doing the
"right" thing, but checking that is pointless these days.  This
commit removes --standalone flag.

See also:

	23676d407c63a6f67f8ce3ff192199bda03e6a03
	8a498a05c3c6b2f53db669b24f36257ab213eb4c

Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Wrap synopsis lines and use [verse] to keep formatting</title>
<updated>2006-01-06T02:44:28Z</updated>
<author>
<name>Jonas Fonseca</name>
<email>fonseca@diku.dk</email>
</author>
<published>2005-12-31T17:37:15Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=353ce81597e831969ac37d6991346f8c39c1488e'/>
<id>urn:sha1:353ce81597e831969ac37d6991346f8c39c1488e</id>
<content type='text'>
In addition, also fixes a few synopses to be more consistent and a gitlink.

Signed-off-by: Jonas Fonseca &lt;fonseca@diku.dk&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>GIT 0.99.9j aka 1.0rc3</title>
<updated>2005-11-17T05:32:44Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2005-11-17T05:32:44Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=27dedf0c3b78d1072fb5449149421284f9e5297b'/>
<id>urn:sha1:27dedf0c3b78d1072fb5449149421284f9e5297b</id>
<content type='text'>
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Change 'cache' to 'index' in the docs</title>
<updated>2005-11-11T23:12:29Z</updated>
<author>
<name>Lukas_Sandström</name>
<email>lukass@etek.chalmers.se</email>
</author>
<published>2005-11-11T01:12:27Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=5f3aa197ac03eabbc45046cd3b9dbcfbda0426d9'/>
<id>urn:sha1:5f3aa197ac03eabbc45046cd3b9dbcfbda0426d9</id>
<content type='text'>
This patch makes the documentation refer to the index
as index instead of cache, but some references still
remain. (e.g. git-update-index.txt)

Signed-off-by: Lukas Sandström &lt;lukass@etek.chalmers.se&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Convert usage of GIT and Git into git</title>
<updated>2005-10-10T23:01:31Z</updated>
<author>
<name>Christian Meder</name>
<email>chris@absolutegiganten.org</email>
</author>
<published>2005-10-10T23:01:31Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=72e9340cfde90189d76ef3c8a4793ea7764ff8ee'/>
<id>urn:sha1:72e9340cfde90189d76ef3c8a4793ea7764ff8ee</id>
<content type='text'>
Convert usage of GIT and Git into git.

Signed-off-by: Christian Meder &lt;chris@absolutegiganten.org&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
<entry>
<title>Remove the version tags from the manpages</title>
<updated>2005-10-10T21:49:52Z</updated>
<author>
<name>Junio C Hamano</name>
<email>junkio@cox.net</email>
</author>
<published>2005-10-10T21:49:52Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/git/commit/?id=98438bd0e893c23186fb82ea8b04964c0f1ef9d1'/>
<id>urn:sha1:98438bd0e893c23186fb82ea8b04964c0f1ef9d1</id>
<content type='text'>
Signed-off-by: Christian Meder &lt;chris@absolutegiganten.org&gt;
Signed-off-by: Junio C Hamano &lt;junkio@cox.net&gt;
</content>
</entry>
</feed>
