
We presently use the ".txt" extension for our AsciiDoc files. While not wrong, most editors do not associate this extension with AsciiDoc, meaning that contributors don't get automatic editor functionality that could be useful, such as syntax highlighting and prose linting. It is much more common to use the ".adoc" extension for AsciiDoc files, since this helps editors automatically detect files and also allows various forges to provide rich (HTML-like) rendering. Let's do that here, renaming all of the files and updating the includes where relevant. Adjust the various build scripts and makefiles to use the new extension as well. Note that this should not result in any user-visible changes to the documentation. Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
27 lines
970 B
Plaintext
27 lines
970 B
Plaintext
Git v2.1.3 Release Notes
|
|
========================
|
|
|
|
* Some MUAs mangled a line in a message that begins with "From " to
|
|
">From " when writing to a mailbox file and feeding such an input to
|
|
"git am" used to lose such a line.
|
|
|
|
* "git daemon" (with NO_IPV6 build configuration) used to incorrectly
|
|
use the hostname even when gethostbyname() reported that the given
|
|
hostname is not found.
|
|
|
|
* Newer versions of 'meld' breaks the auto-detection we use to see if
|
|
they are new enough to support the `--output` option.
|
|
|
|
* "git pack-objects" forgot to disable the codepath to generate
|
|
object reachability bitmap when it needs to split the resulting
|
|
pack.
|
|
|
|
* "gitweb" used deprecated CGI::startfrom, which was removed from
|
|
CGI.pm as of 4.04; use CGI::start_from instead.
|
|
|
|
* "git log" documentation had an example section marked up not
|
|
quite correctly, which passed AsciiDoc but failed with
|
|
AsciiDoctor.
|
|
|
|
Also contains some documentation updates.
|