Ready for 2.11.1

Signed-off-by: Junio C Hamano <gitster@pobox.com>

Junio C Hamano committed Jan 31, 2017 at 13:34 UTC b32fe956d0d8d601e2dc915d96e14d8bbdda6b71
1 file changed +45
Documentation/RelNotes/2.11.1.txt
+45
@@ -116,5 +116,50 @@ Fixes since v2.11
116 will never come. Teach the client side to notice this condition
117 and abort the transfer.
118
119 + * Some platforms no longer understand "latin-1" that is still seen in
120 + the wild in e-mail headers; replace them with "iso-8859-1" that is
121 + more widely known when conversion fails from/to it.
122 +
123 + * Update the procedure to generate "tags" for developer support.
124 +
125 + * Update the definition of the MacOSX test environment used by
126 + TravisCI.
127 +
128 + * A few git-svn updates.
129 +
130 + * Compression setting for producing packfiles were spread across
131 + three codepaths, one of which did not honor any configuration.
132 + Unify these so that all of them honor core.compression and
133 + pack.compression variables the same way.
134 +
135 + * "git fast-import" sometimes mishandled while rebalancing notes
136 + tree, which has been fixed.
137 +
138 + * Recent update to the default abbreviation length that auto-scales
139 + lacked documentation update, which has been corrected.
140 +
141 + * Leakage of lockfiles in the config subsystem has been fixed.
142 +
143 + * It is natural that "git gc --auto" may not attempt to pack
144 + everything into a single pack, and there is no point in warning
145 + when the user has configured the system to use the pack bitmap,
146 + leading to disabling further "gc".
147 +
148 + * "git archive" did not read the standard configuration files, and
149 + failed to notice a file that is marked as binary via the userdiff
150 + driver configuration.
151 +
152 + * "git blame --porcelain" misidentified the "previous" <commit, path>
153 + pair (aka "source") when contents came from two or more files.
154 +
155 + * "git rebase -i" with a recent update started showing an incorrect
156 + count when squashing more than 10 commits.
157 +
158 + * "git <cmd> @{push}" on a detached HEAD used to segfault; it has
159 + been corrected to error out with a message.
160 +
161 + * Tighten a test to avoid mistaking an extended ERE regexp engine as
162 + a PRE regexp engine.
163 +
164
165 Also contains various documentation updates and code clean-ups.