@@ -95,6 +95,10 @@ UI, Workflows & Features
9595 * "git clone" learned a new --server-option option when talking over
9696 the protocol version 2.
9797
98+ * The connectivity bitmaps are created by default in bare
99+ repositories now; also the pathname hash-cache is created by
100+ default to avoid making crappy deltas when repacking.
101+
98102
99103Performance, Internal Implementation, Development Support etc.
100104
@@ -158,6 +162,22 @@ Performance, Internal Implementation, Development Support etc.
158162 achieve better performance by batching the request for these
159163 promised blobs.
160164
165+ * During an initial "git clone --depth=..." partial clone, it is
166+ pointless to spend cycles for a large portion of the connectivity
167+ check that enumerates and skips promisor objects (which by
168+ definition is all objects fetched from the other side). This has
169+ been optimized out.
170+
171+ * Mechanically and systematically drop "extern" from function
172+ declarlation.
173+
174+ * The script to aggregate perf result unconditionally depended on
175+ libjson-perl even though it did not have to, which has been
176+ corrected.
177+
178+ * The internal implementation of "git rebase -i" has been updated to
179+ avoid forking a separate "rebase--interactive" process.
180+
161181
162182Fixes since v2.21
163183-----------------
@@ -436,6 +456,24 @@ Fixes since v2.21
436456 corrected.
437457 (merge b71e56a683 vk/autoconf-gettext later to maint).
438458
459+ * Fix index-pack perf test so that the repeated invocations always
460+ run in an empty repository, which emulates the initial clone
461+ situation better.
462+ (merge 775c71e16d jk/p5302-avoid-collision-check-cost later to maint).
463+
464+ * A "ls-files" that emulates "find" to enumerate files in the working
465+ tree resulted in duplicated Makefile rules that caused the build to
466+ issue an unnecessary warning during a trial build after merge
467+ conflicts are resolved in working tree *.h files but before the
468+ resolved results are added to the index. This has been corrected.
469+
470+ * "git chery-pick" (and "revert" that shares the same runtime engine)
471+ that deals with multiple commits got confused when the final step
472+ gets stopped with a conflict and the user concluded the sequence
473+ with "git commit". Attempt to fix it by cleaning up the state
474+ files used by these commands in such a situation.
475+ (merge 4a72486de9 pw/clean-sequencer-state-upon-final-commit later to maint).
476+
439477 * Code cleanup, docfix, build fix, etc.
440478 (merge 11f470aee7 jc/test-yes-doc later to maint).
441479 (merge 90503a240b js/doc-symref-in-proto-v1 later to maint).
@@ -471,3 +509,4 @@ Fixes since v2.21
471509 (merge dbe7b41019 js/t3301-unbreak-notes-test later to maint).
472510 (merge d8083e4180 km/t3000-retitle later to maint).
473511 (merge 9e4cbccbd7 tz/git-svn-doc-markup-fix later to maint).
512+ (merge da9ca955a7 jk/ls-files-doc-markup-fix later to maint).
0 commit comments