Merge branch 'rt/links-for-asciidoctor'
* rt/links-for-asciidoctor: Documentation: fix documentation AsciiDoc links for external urls
This commit is contained in:
commit
c923f603ea
@ -21,8 +21,8 @@ DESCRIPTION
|
|||||||
*WARNING:* `git cvsimport` uses cvsps version 2, which is considered
|
*WARNING:* `git cvsimport` uses cvsps version 2, which is considered
|
||||||
deprecated; it does not work with cvsps version 3 and later. If you are
|
deprecated; it does not work with cvsps version 3 and later. If you are
|
||||||
performing a one-shot import of a CVS repository consider using
|
performing a one-shot import of a CVS repository consider using
|
||||||
link:http://cvs2svn.tigris.org/cvs2git.html[cvs2git] or
|
http://cvs2svn.tigris.org/cvs2git.html[cvs2git] or
|
||||||
link:https://github.com/BartMassey/parsecvs[parsecvs].
|
https://github.com/BartMassey/parsecvs[parsecvs].
|
||||||
|
|
||||||
Imports a CVS repository into Git. It will either create a new
|
Imports a CVS repository into Git. It will either create a new
|
||||||
repository, or incrementally import into an existing one.
|
repository, or incrementally import into an existing one.
|
||||||
|
@ -436,7 +436,7 @@ git-filter-branch allows you to make complex shell-scripted rewrites
|
|||||||
of your Git history, but you probably don't need this flexibility if
|
of your Git history, but you probably don't need this flexibility if
|
||||||
you're simply _removing unwanted data_ like large files or passwords.
|
you're simply _removing unwanted data_ like large files or passwords.
|
||||||
For those operations you may want to consider
|
For those operations you may want to consider
|
||||||
link:http://rtyley.github.io/bfg-repo-cleaner/[The BFG Repo-Cleaner],
|
http://rtyley.github.io/bfg-repo-cleaner/[The BFG Repo-Cleaner],
|
||||||
a JVM-based alternative to git-filter-branch, typically at least
|
a JVM-based alternative to git-filter-branch, typically at least
|
||||||
10-50x faster for those use-cases, and with quite different
|
10-50x faster for those use-cases, and with quite different
|
||||||
characteristics:
|
characteristics:
|
||||||
@ -455,7 +455,7 @@ characteristics:
|
|||||||
_is_ possible to write filters that include their own parallellism,
|
_is_ possible to write filters that include their own parallellism,
|
||||||
in the scripts executed against each commit.
|
in the scripts executed against each commit.
|
||||||
|
|
||||||
* The link:http://rtyley.github.io/bfg-repo-cleaner/#examples[command options]
|
* The http://rtyley.github.io/bfg-repo-cleaner/#examples[command options]
|
||||||
are much more restrictive than git-filter branch, and dedicated just
|
are much more restrictive than git-filter branch, and dedicated just
|
||||||
to the tasks of removing unwanted data- e.g:
|
to the tasks of removing unwanted data- e.g:
|
||||||
`--strip-blobs-bigger-than 1M`.
|
`--strip-blobs-bigger-than 1M`.
|
||||||
|
@ -1443,7 +1443,7 @@ Although Git is a truly distributed system, it is often
|
|||||||
convenient to organize your project with an informal hierarchy
|
convenient to organize your project with an informal hierarchy
|
||||||
of developers. Linux kernel development is run this way. There
|
of developers. Linux kernel development is run this way. There
|
||||||
is a nice illustration (page 17, "Merges to Mainline") in
|
is a nice illustration (page 17, "Merges to Mainline") in
|
||||||
link:http://www.xenotime.net/linux/mentor/linux-mentoring-2006.pdf[Randy Dunlap's presentation].
|
http://www.xenotime.net/linux/mentor/linux-mentoring-2006.pdf[Randy Dunlap's presentation].
|
||||||
|
|
||||||
It should be stressed that this hierarchy is purely *informal*.
|
It should be stressed that this hierarchy is purely *informal*.
|
||||||
There is nothing fundamental in Git that enforces the "chain of
|
There is nothing fundamental in Git that enforces the "chain of
|
||||||
|
@ -117,7 +117,7 @@ Importing a CVS archive
|
|||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
First, install version 2.1 or higher of cvsps from
|
First, install version 2.1 or higher of cvsps from
|
||||||
link:http://www.cobite.com/cvsps/[http://www.cobite.com/cvsps/] and make
|
http://www.cobite.com/cvsps/[http://www.cobite.com/cvsps/] and make
|
||||||
sure it is in your path. Then cd to a checked out CVS working directory
|
sure it is in your path. Then cd to a checked out CVS working directory
|
||||||
of the project you are interested in and run linkgit:git-cvsimport[1]:
|
of the project you are interested in and run linkgit:git-cvsimport[1]:
|
||||||
|
|
||||||
|
@ -84,7 +84,7 @@ separator (rules for Perl's "`split(" ", $line)`").
|
|||||||
|
|
||||||
* Fields use modified URI encoding, defined in RFC 3986, section 2.1
|
* Fields use modified URI encoding, defined in RFC 3986, section 2.1
|
||||||
(Percent-Encoding), or rather "Query string encoding" (see
|
(Percent-Encoding), or rather "Query string encoding" (see
|
||||||
link:http://en.wikipedia.org/wiki/Query_string#URL_encoding[]), the difference
|
http://en.wikipedia.org/wiki/Query_string#URL_encoding[]), the difference
|
||||||
being that SP (" ") can be encoded as "{plus}" (and therefore "{plus}" has to be
|
being that SP (" ") can be encoded as "{plus}" (and therefore "{plus}" has to be
|
||||||
also percent-encoded).
|
also percent-encoded).
|
||||||
+
|
+
|
||||||
|
@ -500,7 +500,7 @@ TODO: Document this further.
|
|||||||
References
|
References
|
||||||
----------
|
----------
|
||||||
|
|
||||||
link:http://www.ietf.org/rfc/rfc1738.txt[RFC 1738: Uniform Resource Locators (URL)]
|
http://www.ietf.org/rfc/rfc1738.txt[RFC 1738: Uniform Resource Locators (URL)]
|
||||||
link:http://www.ietf.org/rfc/rfc2616.txt[RFC 2616: Hypertext Transfer Protocol -- HTTP/1.1]
|
http://www.ietf.org/rfc/rfc2616.txt[RFC 2616: Hypertext Transfer Protocol -- HTTP/1.1]
|
||||||
link:technical/pack-protocol.html
|
link:technical/pack-protocol.html
|
||||||
link:technical/protocol-capabilities.html
|
link:technical/protocol-capabilities.html
|
||||||
|
Loading…
Reference in New Issue
Block a user