@@ -32,6 +32,9 @@ UI, Workflows & Features
32
32
* A new version of fsmonitor-watchman hook has been introduced, to
33
33
avoid races.
34
34
35
+ * "git config" learned to show in which "scope", in addition to in
36
+ which file, each config setting comes from.
37
+
35
38
36
39
Performance, Internal Implementation, Development Support etc.
37
40
@@ -86,63 +89,55 @@ Performance, Internal Implementation, Development Support etc.
86
89
work in the repository, but passed the_repository instance to its
87
90
callees, which has been cleaned up (somewhat).
88
91
92
+ * Memory footprint and performance of "git name-rev" has been
93
+ improved.
94
+
89
95
90
96
Fixes since v2.25
91
97
-----------------
92
98
93
99
* "git commit" gives output similar to "git status" when there is
94
100
nothing to commit, but without honoring the advise.statusHints
95
101
configuration variable, which has been corrected.
96
- (merge 5c4f55f1f6 hw/commit-advise-while-rejecting later to maint).
97
102
98
103
* has_object_file() said "no" given an object registered to the
99
104
system via pretend_object_file(), making it inconsistent with
100
105
read_object_file(), causing lazy fetch to attempt fetching an
101
106
empty tree from promisor remotes.
102
- (merge 9c8a294a1a jt/sha1-file-remove-oi-skip-cached later to maint).
103
107
104
108
* Complete an update to tutorial that encourages "git switch" over
105
109
"git checkout" that was done only half-way.
106
- (merge 1a7e454dd6 hw/tutorial-favor-switch-over-checkout later to maint).
107
110
108
111
* C pedantry ;-) fix.
109
- (merge 63ab08fb99 bc/run-command-nullness-after-free-fix later to maint).
110
112
111
113
* The code that tries to skip over the entries for the paths in a
112
114
single directory using the cache-tree was not careful enough
113
115
against corrupt index file.
114
- (merge 573117dfa5 es/unpack-trees-oob-fix later to maint).
115
116
116
117
* Reduce unnecessary round-trip when running "ls-remote" over the
117
118
stateless RPC mechanism.
118
- (merge 4d8cab95cc jk/no-flush-upon-disconnecting-slrpc-transport later to maint).
119
119
120
120
* "git restore --staged" did not correctly update the cache-tree
121
121
structure, resulting in bogus trees to be written afterwards, which
122
122
has been corrected.
123
- (merge e701bab3e9 nd/switch-and-restore later to maint).
124
123
125
124
* The code recently added to move to the entry beyond the ones in the
126
125
same directory in the index in the sparse-cone mode did not count
127
126
the number of entries to skip over incorrectly, which has been
128
127
corrected.
129
- (merge 7210ca4ee5 ds/sparse-cone later to maint).
130
128
131
129
* Rendering by "git log --graph" of ancestry lines leading to a merge
132
130
commit were made suboptimal to waste vertical space a bit with a
133
131
recent update, which has been corrected.
134
- (merge c958d3bd0a ds/graph-horizontal-edges later to maint).
135
132
136
133
* Work around test breakages caused by custom regex engine used in
137
134
libasan, when address sanitizer is used with more recent versions
138
135
of gcc and clang.
139
- (merge f65d07fffa jk/asan-build-fix later to maint).
140
136
141
137
* Minor bugfixes to "git add -i" that has recently been rewritten in C.
142
138
(merge 849e43cc18 js/builtin-add-i-cmds later to maint).
143
139
144
140
* "git fetch --refmap=" option has got a better documentation.
145
- (merge b40a50264a ds/refmap-doc later to maint).
146
141
147
142
* "git checkout X" did not correctly fail when X is not a local
148
143
branch but could name more than one remote-tracking branches
@@ -153,7 +148,6 @@ Fixes since v2.25
153
148
* Corner case bugs in "git clean" that stems from a (necessarily for
154
149
performance reasons) awkward calling convention in the directory
155
150
enumeration API has been corrected.
156
- (merge 0cbb60574e en/fill-directory-fixes-more later to maint).
157
151
158
152
* A fetch that is told to recursively fetch updates in submodules
159
153
inevitably produces reams of output, and it becomes hard to spot
@@ -168,7 +162,6 @@ Fixes since v2.25
168
162
169
163
* Futureproofing a test not to depend on the current implementation
170
164
detail.
171
- (merge b54128bb0b jt/t5616-robustify later to maint).
172
165
173
166
* Running "git rm" on a submodule failed unnecessarily when
174
167
.gitmodules is only cache-dirty, which has been corrected.
@@ -181,13 +174,10 @@ Fixes since v2.25
181
174
the .gitmodules file but when "--recurse-submodules" is given or
182
175
the "submodule.recurse" variable is set, it did. Now these
183
176
settings are ignored in the "--no-index" mode.
184
- (merge c56c48dd07 pb/do-not-recurse-grep-no-index later to maint).
185
177
186
178
* Technical details of the bundle format has been documented.
187
- (merge 7378ec90e1 ms/doc-bundle-format later to maint).
188
179
189
180
* Unhelpful warning messages during documentation build have been squelched.
190
- (merge 30183894ea js/ci-squelch-doc-warning later to maint).
191
181
192
182
* "git rebase -i" identifies existing commits in its todo file with
193
183
their abbreviated object name, which could become ambigous as it
@@ -224,23 +214,19 @@ Fixes since v2.25
224
214
225
215
* Other code cleanup, docfix, build fix, etc.
226
216
(merge 26f924d50e en/simplify-check-updates-in-unpack-trees later to maint).
227
- (merge 065027ee1a en/string-list-can-be-custom-sorted later to maint).
228
217
(merge d0d0a357a1 am/update-pathspec-f-f-tests later to maint).
229
218
(merge f94f7bd00d am/test-pathspec-f-f-error-cases later to maint).
230
- (merge e4837b4406 jk/test-fixes later to maint).
231
- (merge a4ffbbbb99 rt/submodule-i18n later to maint).
232
- (merge 856249c62a bc/actualmente later to maint).
233
219
(merge c513a958b6 ss/t6025-modernize later to maint).
234
- (merge 69e104d70e bc/author-committer-doc later to maint).
235
- (merge 7a2dc95cbc bc/misconception-doc later to maint).
236
220
(merge b441717256 dl/test-must-fail-fixes later to maint).
237
221
(merge d031049da3 mt/sparse-checkout-doc-update later to maint).
238
222
(merge 145136a95a jc/skip-prefix later to maint).
239
- (merge eb31044ff7 jb/multi-pack-index-docfix later to maint).
240
- (merge 04e5b3f0b4 km/submodule-doc-use-sm-path later to maint).
241
- (merge e469afe158 ma/filter-branch-doc-caret later to maint).
242
- (merge 395518cf7a jb/parse-options-message-fix later to maint).
243
- (merge 303b3c1c46 es/submodule-fetch-message-fix later to maint).
244
- (merge 9299f84921 ma/diff-doc-clarify-regexp-example later to maint).
245
- (merge 2b0f19fa7a js/convert-typofix later to maint).
246
223
(merge 5290d45134 jk/alloc-cleanups later to maint).
224
+ (merge 7a9f8ca805 rs/parse-options-concat-dup later to maint).
225
+ (merge 517b60564e rs/strbuf-insertstr later to maint).
226
+ (merge f696a2b1c8 jk/mailinfo-cleanup later to maint).
227
+ (merge 076ee3e8a2 js/test-write-junit-xml-fix later to maint).
228
+ (merge de26f02db1 js/test-avoid-pipe later to maint).
229
+ (merge bfe2bbb47f js/test-unc-fetch later to maint).
230
+ (merge 08809c09aa js/mingw-open-in-gdb later to maint).
231
+ (merge cc4f2eb828 jk/doc-credential-helper later to maint).
232
+ (merge e0020b2f82 es/outside-repo-errmsg-hints later to maint).
0 commit comments