Ninth batch

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

Junio C Hamano committed Oct 15, 2019 at 13:31 UTC 108b97dc372828f0e72e56bbb40cae8e1e83ece6
1 file changed +33
Documentation/RelNotes/2.24.0.txt
+33
@@ -71,6 +71,10 @@ UI, Workflows & Features
71 * "git add -i" has been taught to show the total number of hunks and
72 the hunks that has been processed so far when showing prompts.
73
74 + * "git fetch --jobs=<n>" allowed <n> parallel jobs when fetching
75 + submodules, but this did not apply to "git fetch --multiple" that
76 + fetches from multiple remote repositories. It now does.
77 +
78
79 Performance, Internal Implementation, Development Support etc.
80
@@ -128,6 +132,18 @@ Performance, Internal Implementation, Development Support etc.
132
133 * Preparation for SHA-256 upgrade continues.
134
135 + * "git log --graph" for an octopus merge is sometimes colored
136 + incorrectly, which is demonstrated and documented but not yet
137 + fixed.
138 +
139 + * The trace2 output, when sending them to files in a designated
140 + directory, can populate the directory with too many files; a
141 + mechanism is introduced to set the maximum number of files and
142 + discard further logs when the maximum is reached.
143 +
144 + * We have adopted a Code-of-conduct document.
145 + (merge 3f9ef874a7 jk/coc later to maint).
146 +
147
148 Fixes since v2.23
149 -----------------
@@ -297,6 +313,20 @@ Fixes since v2.23
313 to access the worktree correctly, which has been corrected.
314 (merge dfd557c978 js/stash-apply-in-secondary-worktree later to maint).
315
316 + * The merge-recursive machiery is one of the most complex parts of
317 + the system that accumulated cruft over time. This large series
318 + cleans up the implementation quite a bit.
319 + (merge b657047719 en/merge-recursive-cleanup later to maint).
320 +
321 + * Pretty-printed command line formatter (used in e.g. reporting the
322 + command being run by the tracing API) had a bug that lost an
323 + argument that is an empty string, which has been corrected.
324 + (merge ce2d7ed2fd gs/sq-quote-buf-pretty later to maint).
325 +
326 + * "git range-diff" failed to handle mode-only change, which has been
327 + corrected.
328 + (merge 2b6a9b13ca tg/range-diff-output-update later to maint).
329 +
330 * Other code cleanup, docfix, build fix, etc.
331 (merge d1387d3895 en/fast-import-merge-doc later to maint).
332 (merge 1c24a54ea4 bm/repository-layout-typofix later to maint).
@@ -335,3 +365,6 @@ Fixes since v2.23
365 (merge 53d687bf5f ah/cleanups later to maint).
366 (merge f537485fa5 rs/test-remove-useless-debugging-cat later to maint).
367 (merge 11a3d3aadd dl/rev-list-doc-cleanup later to maint).
368 + (merge d928a8388a am/t0028-utf16-tests later to maint).
369 + (merge b05b40930e dl/t0000-skip-test-test later to maint).
370 + (merge 03d3b1297c js/xdiffi-comment-updates later to maint).