@@ -16,6 +16,16 @@ UI, Workflows & Features
16
16
* The command line completion (in contrib/) learned to complete
17
17
subcommands and arguments to "git worktree".
18
18
19
+ * Disambiguation logic to tell revisions and pathspec apart has been
20
+ tweaked so that backslash-escaped glob special characters do not
21
+ count in the "wildcards are pathspec" rule.
22
+
23
+ * One effect of specifying where the GIT_DIR is (either with the
24
+ environment variable, or with the "git --git-dir=<where> cmd"
25
+ option) is to disable the repository discovery. This has been
26
+ placed a bit more stress in the documentation, as new users often
27
+ get confused.
28
+
19
29
20
30
Performance, Internal Implementation, Development Support etc.
21
31
@@ -36,6 +46,9 @@ Performance, Internal Implementation, Development Support etc.
36
46
* Preparation of test scripts for the day when the object names will
37
47
use SHA-256 continues.
38
48
49
+ * Warn programmers about pretend_object_file() that allows the code
50
+ to tentatively use in-core objects.
51
+
39
52
40
53
Fixes since v2.25
41
54
-----------------
@@ -116,6 +129,29 @@ Fixes since v2.25
116
129
corrected.
117
130
(merge a9472afb63 pb/recurse-submodule-in-worktree-fix later to maint).
118
131
132
+ * Futureproofing a test not to depend on the current implementation
133
+ detail.
134
+ (merge b54128bb0b jt/t5616-robustify later to maint).
135
+
136
+ * Running "git rm" on a submodule failed unnecessarily when
137
+ .gitmodules is only cache-dirty, which has been corrected.
138
+ (merge 7edee32985 dt/submodule-rm-with-stale-cache later to maint).
139
+
140
+ * C pedantry ;-) fix.
141
+ (merge cf82bff73f jk/clang-sanitizer-fixes later to maint).
142
+
143
+ * "git grep --no-index" should not get affected by the contents of
144
+ the .gitmodules file but when "--recurse-submodules" is given or
145
+ the "submodule.recurse" variable is set, it did. Now these
146
+ settings are ignored in the "--no-index" mode.
147
+ (merge c56c48dd07 pb/do-not-recurse-grep-no-index later to maint).
148
+
149
+ * Technical details of the bundle format has been documented.
150
+ (merge 7378ec90e1 ms/doc-bundle-format later to maint).
151
+
152
+ * Unhelpful warning messages during documentation build have been squelched.
153
+ (merge 30183894ea js/ci-squelch-doc-warning later to maint).
154
+
119
155
* Other code cleanup, docfix, build fix, etc.
120
156
(merge 26f924d50e en/simplify-check-updates-in-unpack-trees later to maint).
121
157
(merge 065027ee1a en/string-list-can-be-custom-sorted later to maint).
@@ -129,3 +165,11 @@ Fixes since v2.25
129
165
(merge 7a2dc95cbc bc/misconception-doc later to maint).
130
166
(merge b441717256 dl/test-must-fail-fixes later to maint).
131
167
(merge d031049da3 mt/sparse-checkout-doc-update later to maint).
168
+ (merge 145136a95a jc/skip-prefix later to maint).
169
+ (merge eb31044ff7 jb/multi-pack-index-docfix later to maint).
170
+ (merge 04e5b3f0b4 km/submodule-doc-use-sm-path later to maint).
171
+ (merge e469afe158 ma/filter-branch-doc-caret later to maint).
172
+ (merge 395518cf7a jb/parse-options-message-fix later to maint).
173
+ (merge 303b3c1c46 es/submodule-fetch-message-fix later to maint).
174
+ (merge 9299f84921 ma/diff-doc-clarify-regexp-example later to maint).
175
+ (merge 2b0f19fa7a js/convert-typofix later to maint).
0 commit comments