Preparation for 2.13.4 continues

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

Junio C Hamano committed Jul 31, 2017 at 13:52 UTC c94ef190411ca35f2445ff63488458650faa5d8b
1 file changed +18
Documentation/RelNotes/2.13.4.txt
+18
@@ -8,3 +8,21 @@ Fixes since v2.13.3
8
9 * A recent update broke an alias that contained an uppercase letter,
10 which has been fixed.
11 +
12 + * On Cygwin, similar to Windows, "git push //server/share/repository"
13 + ought to mean a repository on a network share that can be accessed
14 + locally, but this did not work correctly due to stripping the double
15 + slashes at the beginning.
16 +
17 + * The progress meter did not give a useful output when we haven't had
18 + 0.5 seconds to measure the throughput during the interval. Instead
19 + show the overall throughput rate at the end, which is a much more
20 + useful number.
21 +
22 + * We run an early part of "git gc" that deals with refs before
23 + daemonising (and not under lock) even when running a background
24 + auto-gc, which caused multiple gc processes attempting to run the
25 + early part at the same time. This is now prevented by running the
26 + early part also under the GC lock.
27 +
28 +Also contains a handful of small code and documentation clean-ups.