Fifth batch for 2.14

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

Junio C Hamano committed Jun 2, 2017 at 15:07 UTC 826c06412e429a091d32d0e1b26e77da33fc1ce9
1 file changed +24
Documentation/RelNotes/2.14.0.txt
+24
@@ -110,6 +110,9 @@ Performance, Internal Implementation, Development Support etc.
110 operations now, which would speed up "git status" (as long as the
111 cache is properly invalidated).
112
113 + * The internal implementation of "git grep" has seen some clean-up.
114 + (merge 8df4c2953f ab/grep-preparatory-cleanup later to maint).
115 +
116
117 Also contains various documentation updates and code clean-ups.
118
@@ -263,6 +266,23 @@ notes for details).
266 when needed. Recent versions of Net::SMTP can do TLS natively.
267 (merge 0ead000c3a dk/send-email-avoid-net-smtp-ssl-when-able later to maint).
268
269 + * "foo\bar\baz" in "git fetch foo\bar\baz", even though there is no
270 + slashes in it, cannot be a nickname for a remote on Windows, as
271 + that is likely to be a pathname on a local filesystem.
272 + (merge d9244ecf4f js/bs-is-a-dir-sep-on-windows later to maint).
273 +
274 + * "git clean -d" used to clean directories that has ignored files,
275 + even though the command should not lose ignored ones without "-x".
276 + "git status --ignored" did not list ignored and untracked files
277 + without "-uall". These have been corrected.
278 + (merge 6b1db43109 sl/clean-d-ignored-fix later to maint).
279 +
280 + * The result from "git diff" that compares two blobs, e.g. "git diff
281 + $commit1:$path $commit2:$path", used to be shown with the full
282 + object name as given on the command line, but it is more natural to
283 + use the $path in the output and use it to look up .gitattributes.
284 + (merge 30d005c020 jk/diff-blob later to maint).
285 +
286 * Other minor doc, test and build updates and code cleanups.
287 (merge 515360f9e9 jn/credential-doc-on-clear later to maint).
288 (merge 0e6d899fee ab/aix-needs-compat-regex later to maint).
@@ -272,3 +292,7 @@ notes for details).
292 (merge 449456ad47 sg/core-filemode-doc-typofix later to maint).
293 (merge ba4dce784e km/log-showsignature-doc later to maint).
294 (merge c5a9157393 jh/memihash-opt later to maint).
295 + (merge 80f4cd8046 ab/ref-filter-no-contains later to maint).
296 + (merge b275da816c ah/doc-interpret-trailers-ifexists later to maint).
297 + (merge fc7a5edb55 ah/doc-pretty-format-fix later to maint).
298 + (merge 7e95fcb4b5 sb/t5531-update-desc later to maint).