Third batch after 2.12

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

Junio C Hamano committed Mar 12, 2017 at 23:24 UTC d6db3f216544d05e09159756812ccbcb16861d71
1 file changed +39
Documentation/RelNotes/2.13.0.txt
+39
@@ -88,6 +88,8 @@ UI, Workflows & Features
88 stashed away only partially.
89 (merge 9e140909f6 tg/stash-push later to maint).
90
91 + * Documentation for "git ls-files" did not refer to core.quotePath.
92 +
93
94 Performance, Internal Implementation, Development Support etc.
95
@@ -134,6 +136,10 @@ Performance, Internal Implementation, Development Support etc.
136 pointless).
137 (merge 40a18fc77c jk/http-auth later to maint).
138
139 + * Windows port wants to use OpenSSL's implementation of SHA-1
140 + routines, so let them.
141 + (merge 2cfc70f0de jh/mingw-openssl-sha1 later to maint).
142 +
143
144 Also contains various documentation updates and code clean-ups.
145
@@ -209,8 +215,41 @@ notes for details).
215 and ended up giving a not-so-useful error message.
216 (merge 8e27391a5f jt/http-base-url-update-upon-redirect later to maint).
217
218 + * The patch subcommand of "git add -i" was meant to have paths
219 + selection prompt just like other subcommand, unlike "git add -p"
220 + directly jumps to hunk selection. Recently, this was broken and
221 + "add -i" lost the paths selection dialog, but it now has been
222 + fixed.
223 + (merge c852bd54bd jk/add-i-patch-do-prompt later to maint).
224 +
225 + * Git v2.12 was shipped with an embarrassing breakage where various
226 + operations that verify paths given from the user stopped dying when
227 + seeing an issue, and instead later triggering segfault.
228 + (merge ce83eadd9a js/realpath-pathdup-fix later to maint).
229 +
230 + * There is no need for Python only to give a few messages to the
231 + standard error stream, but we somehow did.
232 + (merge b8686c661d ss/remote-bzr-hg-placeholder-wo-python later to maint).
233 +
234 + * The code to parse "git log -L..." command line was buggy when there
235 + are many ranges specified with -L; overrun of the allocated buffer
236 + has been fixed.
237 + (merge aaae0bf787 ax/line-log-range-merge-fix later to maint).
238 +
239 + * The command-line parsing of "git log -L" copied internal data
240 + structures using incorrect size on ILP32 systems.
241 + (merge 07f546cda5 vn/line-log-memcpy-size-fix later to maint).
242 +
243 + * "git diff --quiet" relies on the size field in diff_filespec to be
244 + correctly populated, but diff_populate_filespec() helper function
245 + made an incorrect short-cut when asked only to populate the size
246 + field for paths that need to go through convert_to_git() (e.g. CRLF
247 + conversion).
248 + (merge 12426e114b jc/diff-populate-filespec-size-only-fix later to maint).
249 +
250 * Other minor doc, test and build updates and code cleanups.
251 (merge 2cfa83574c mm/two-more-xstrfmt later to maint).
252 (merge b803ae4427 ps/docs-diffcore later to maint).
253 (merge bcd886d897 ew/markdown-url-in-readme later to maint).
254 (merge b2d593a779 rj/remove-unused-mktemp later to maint).
255 + (merge 3255e512a8 jk/ewah-use-right-type-in-sizeof later to maint).