Skip to content

Commit 1a56be1

Browse files
committed
Merge branch 'maint'
* maint: Prepare for 1.6.5.5 Documentation: xmlto 0.0.18 does not know --stringparam t4201: use ISO8859-1 rather than ISO-8859-1
2 parents eff726f + adf9628 commit 1a56be1

File tree

3 files changed

+53
-2
lines changed

3 files changed

+53
-2
lines changed

Documentation/Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,14 @@ endif
109109
# use MAN_BASE_URL=http://www.kernel.org/pub/software/scm/git/docs/
110110
# but distros may want to set it to /usr/share/doc/git-core/docs/ or
111111
# something like that.
112+
#
113+
# As older stylesheets simply ignore this parameter, it ought to be
114+
# safe to set it to empty string when the base URL is not specified,
115+
# but unfortunately we cannot do so unconditionally because at least
116+
# xmlto 0.0.18 is reported to lack --stringparam option.
117+
ifdef MAN_BASE_URL
112118
XMLTO_EXTRA += --stringparam man.base.url.for.relative.links=$(MAN_BASE_URL)
119+
endif
113120

114121
# If your target system uses GNU groff, it may try to render
115122
# apostrophes as a "pretty" apostrophe using unicode. This breaks

Documentation/RelNotes-1.6.5.5.txt

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
Git v1.6.5.5 Release Notes
2+
==========================
3+
4+
Fixes since v1.6.5.4
5+
--------------------
6+
7+
* Manual pages can be formatted with older xmlto again.
8+
9+
* GREP_OPTIONS exported from user's environment could have broken
10+
our scripted commands.
11+
12+
* In configuration files, a few variables that name paths can begin with
13+
~/ and ~username/ and they are expanded as expected. This is not a
14+
bugfix but 1.6.6 will have this and without backporting users cannot
15+
easily use the same ~/.gitconfig across versions.
16+
17+
* "git diff -B -M" did the same computation to hash lines of contents
18+
twice, and held onto memory after it has used the data in it
19+
unnecessarily before it freed.
20+
21+
* "git format-patch revisions... -- path" issued an incorrect error
22+
message that suggested to use "--" on the command line when path
23+
does not exist in the current work tree (it is a separate matter if
24+
it makes sense to limit format-patch with pathspecs like that
25+
without using the --full-diff option).
26+
27+
* "git grep -F -i StRiNg" did not work as expected.
28+
29+
* Enumeration of available merge strategies iterated over the list of
30+
commands in a wrong way, sometimes producing an incorrect result.
31+
32+
* "git shortlog" did not honor the "encoding" header embedded in the
33+
commit object like "git log" did.
34+
35+
* Reading progress messages that come from the remote side while running
36+
"git pull" is given precedence over reading the actual pack data to
37+
prevent garbled progress message on the user's terminal.
38+
39+
* "git rebase" got confused when the log message began with certain
40+
strings that looked like Subject:, Date: or From: header.
41+
42+
Other minor documentation updates are included.
43+
44+
v1.6.5.4-47-gdda8f4b

t/t4201-shortlog.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ GIT_DIR=non-existing git shortlog -w < log > out
5353
test_expect_success 'shortlog from non-git directory' 'test_cmp expect out'
5454

5555
iconvfromutf8toiso88591() {
56-
printf "%s" "$*" | iconv -f UTF-8 -t ISO-8859-1
56+
printf "%s" "$*" | iconv -f UTF-8 -t ISO8859-1
5757
}
5858

5959
DSCHO="Jöhännës \"Dschö\" Schindëlin"
@@ -72,7 +72,7 @@ test_expect_success 'shortlog encoding' '
7272
git config --unset i18n.commitencoding &&
7373
echo 2 > a1 &&
7474
git commit --quiet -m "$MSG1" --author="$DSCHOE" a1 &&
75-
git config i18n.commitencoding "ISO-8859-1" &&
75+
git config i18n.commitencoding "ISO8859-1" &&
7676
echo 3 > a1 &&
7777
git commit --quiet -m "$(iconvfromutf8toiso88591 "$MSG2")" \
7878
--author="$(iconvfromutf8toiso88591 "$DSCHOE")" a1 &&

0 commit comments

Comments
 (0)