1 Git v2.43 Release Notes
2 =======================
4 Backward Compatibility Notes
6 * The "--rfc" option of "git format-patch" used to be a valid way to
7 override an earlier "--subject-prefix=<something>" on the command
8 line and replace it with "[RFC PATCH]", but from this release, it
9 merely prefixes the string "RFC " in front of the given subject
10 prefix. If you are negatively affected by this change, please use
11 "--subject-prefix=PATCH --rfc" as a replacement.
13 * "git rev-list --stdin" learned to take non-revisions (like "--not")
14 recently from the standard input, but the way such a "--not" was
15 handled was quite confusing, which has been rethought. The updated
16 rule is that "--not" given from the command line only affects revs
17 given from the command line that comes but not revs read from the
18 standard input, and "--not" read from the standard input affects
19 revs given from the stanrdard input and not revs given from the
22 UI, Workflows & Features
24 * A message written in olden time prevented a branch from getting
25 checked out saying it is already checked out elsewhere, but these
26 days, we treat a branch that is being bisected or rebased just like
27 a branch that is checked out and protect it. Rephrase the message
28 to say that the branch is in use.
30 * Hourly and other schedule of "git maintenance" jobs are randomly
33 * "git cmd -h" learned to signal which options can be negated by
34 listing such options like "--[no-]opt".
36 * The way authentication related data other than passwords (e.g.
37 oath token and password expiration data) are stored in libsecret
38 keyrings has been rethought.
40 * Update two credential helpers to correctly match which credential
41 to erase; they dropped not the ones with stale password.
45 * "git format-patch" learns a way to feed cover letter description,
46 that (1) can be used on detached HEAD where there is no branch
47 description available, and (2) also can override the branch
48 description if there is one.
50 * Use of --max-pack-size to allow multiple packfiles to be created is
51 now supported even when we are sending unreachable objects to cruft
54 * "git format-patch --rfc --subject-prefix=<foo>" used to ignore the
55 "--subject-prefix" option and used "[RFC PATCH]"; now we will add
56 "RFC" prefix to whatever subject prefix is specified.
58 * "git log --format" has been taught the %(decorate) placeholder.
60 * The default log message created by "git revert", when reverting a
61 commit that records a revert, has been tweaked, to encourage people
62 describe complex "revert of revert of revert" situation better in
65 * The command-line complation support (in contrib/) learned to
66 complete "git commit --trailer=" for possible trailer keys.
68 * "git update-index" learns "--show-index-version" to inspect
69 the index format version used by the on-disk index file.
71 * "git diff" learned diff.statNameWidth configuration variable, to
72 give the default width for the name part in the "--stat" output.
74 * "git range-diff --notes=foo" compared "log --notes=foo --notes" of
75 the two ranges, instead of using just the specified notes tree.
77 * The command line completion script (in contrib/) can be told to
78 complete aliases by including ": git <cmd> ;" in the alias to tell
79 it that the alias should be completed similar to how "git <cmd>" is
80 completed. The parsing code for the alias as been loosened to
81 allow ';' without an extra space before it.
83 * "git for-each-ref" and friends learned to apply mailmap to
84 authorname and other fields.
87 Performance, Internal Implementation, Development Support etc.
89 * "git check-attr" has been taught to work better with sparse-index.
91 * It may be tempting to leave the help text NULL for a command line
92 option that is either hidden or too obvious, but "git subcmd -h"
93 and "git subcmd --help-all" would have segfaulted if done so. Now
94 the help text is optional.
96 * Tests that are known to pass with LSan are now marked as such.
97 (merge 5fafe8c95f tb/mark-more-tests-as-leak-free later to maint).
99 * Flaky "git p4" tests, as well as "git svn" tests, are now skipped
100 in the (rather expensive) sanitizer CI job.
101 (merge 6ba913629f js/ci-san-skip-p4-and-svn-tests later to maint).
103 * Tests with LSan from time to time seem to emit harmless message
104 that makes our tests unnecessarily flaky; we work it around by
105 filtering the uninteresting output.
106 (merge 370ef7e40d jk/test-lsan-denoise-output later to maint).
108 * Unused parameters to functions are marked as such, and/or removed,
109 in order to bring us closer to -Wunused-parameter clean.
111 * The code to keep track of existing packs in the repository while
112 repacking has been refactored.
118 * Overly long label names used in the sequencer machinery are now
119 chopped to fit under filesystem limitation.
120 (merge ac300bda10 mp/rebase-label-length-limit later to maint).
123 (merge f9a547d3a7 ds/scalar-updates later to maint).
125 * Tweak GitHub Actions CI so that pushing the same commit to multiple
126 branch tips at the same time will not waste building and testing
127 the same thing twice.
128 (merge 99fe06cbfd jc/ci-skip-same-commit later to maint).
130 * The commit-graph verification code that detects mixture of zero and
131 non-zero generation numbers has been updated.
132 (merge db6044d762 tb/commit-graph-verify-fix later to maint).
134 * "git diff -w --exit-code" with various options did not work
135 correctly, which is being addressed.
136 (merge a64f8b2595 jc/diff-exit-code-with-w-fixes later to maint).
138 * transfer.unpackLimit ought to be used as a fallback, but overrode
139 fetch.unpackLimit and receive.unpackLimit instead.
140 (merge f3d33f8cfe ts/unpacklimit-config-fix later to maint).
142 * The use of API between two calls to require_clean_work_tree() from
143 the sequencer code has been cleaned up for consistency.
144 (merge a9b5955e07 ob/sequencer-empty-hint-fix later to maint).
146 * "git diff --no-such-option" and other corner cases around the exit
147 status of the "diff" command has been corrected.
148 (merge 5cc6b2d70b jk/diff-result-code-cleanup later to maint).
150 * "git for-each-ref --sort='contents:size'" sorts the refs according
151 to size numerically, giving a ref that points at a blob twelve-byte
152 (12) long before showing a blob hundred-byte (100) long.
153 (merge 6d79cd8474 ks/ref-filter-sort-numerically later to maint).
155 * We now limit depth of the tree objects and maximum length of
156 pathnames recorded in tree objects.
157 (merge 4d5693ba05 jk/tree-name-and-depth-limit later to maint).
159 * Various fixes to the behavior of "rebase -i" when the command got
160 interrupted by conflicting changes.
161 (merge 203573b024 pw/rebase-i-after-failure later to maint).
163 * References from description of the `--patch` option in various
164 manual pages have been simplified and improved.
165 (merge 11422f23e3 so/diff-doc-for-patch-update later to maint).
167 * "git grep -e A --no-or -e B" is accepted, even though the negation
168 of "or" did not mean anything, which has been tightened.
169 (merge aae8558b10 rs/grep-no-no-or later to maint).
171 * The completion script (in contrib/) has been taught to treat the
172 "-t" option to "git checkout" and "git switch" just like the
173 "--track" option, to complete remote-tracking branches.
174 (merge 9f892830d6 js/complete-checkout-t later to maint).
176 * "git diff --no-index -R <(one) <(two)" did not work correctly,
177 which has been corrected.
178 (merge 48944f214c pw/diff-no-index-from-named-pipes later to maint).
180 * Update "git maintenance" timers' implementation based on systemd
181 timers to work with WSL.
182 (merge 5e8515e8e8 js/systemd-timers-wsl-fix later to maint).
184 * "git diff --cached" codepath did not fill the necessary stat
185 information for a file when fsmonitor knows it is clean and ended
186 up behaving as if it is not clean, which has been corrected.
187 (merge 6a044a2048 js/diff-cached-fsmonitor-fix later to maint).
189 * Clarify how "alias.foo = : git cmd ; aliased-command-string" should
190 be spelled with necessary whitespaces around punctuation marks to
192 (merge 4333267995 pb/completion-aliases-doc later to maint).
194 * HTTP Header redaction code has been adjusted for a newer version of
195 cURL library that shows its traces differently from earlier
197 (merge 0763c3a2c4 jk/redact-h2h3-headers-fix later to maint).
199 * An error message given by "git send-email" when given a malformed
200 address did not give correct information, which has been corrected.
201 (merge 12288cc44e tb/send-email-extract-valid-address-error-message-fix later to maint).
203 * UBSan options were not propagated through the test framework to git
204 run via the httpd, unlike ASan options, which has been corrected.
205 (merge 252d693797 jk/test-pass-ubsan-options-to-http-test later to maint).
207 * "checkout --merge -- path" and "update-index --unresolve path" did
208 not resurrect conflicted state that was resolved to remove path,
210 (merge 5bdedac3c7 jc/unresolve-removal later to maint).
212 * The display width table for unicode characters has been updated for
214 (merge 872976c37e bb/unicode-width-table-15 later to maint).
216 * Other code cleanup, docfix, build fix, etc.
217 (merge fd3ba590d8 ws/git-push-doc-grammofix later to maint).
218 (merge 5f33a843de ds/upload-pack-error-sequence-fix later to maint).
219 (merge beaa1d952b jk/function-pointer-mismatches-fix later to maint).
220 (merge b46d806ea5 ob/t9001-indent-fix later to maint).
221 (merge fdc9914c28 ja/worktree-orphan later to maint).
222 (merge c2cbefc510 jc/mv-d-to-d-error-message-fix later to maint).
223 (merge d0fc552bfc ch/t6300-verify-commit-test-cleanup later to maint).
224 (merge aa4b83dd5e ws/git-svn-retire-faketerm later to maint).
225 (merge edf80d23f1 jk/ci-retire-allow-ref later to maint).
226 (merge 256a94ef6c bc/more-git-var later to maint).
227 (merge 82af2c639c ob/sequencer-reword-error-message later to maint).
228 (merge 2a63c79dae rs/grep-parseopt-simplify later to maint).
229 (merge 078c42531e rs/name-rev-use-opt-hidden-bool later to maint).
230 (merge 63642d58b4 ob/sequencer-remove-dead-code later to maint).
231 (merge 8aae489756 ob/t3404-typofix later to maint).
232 (merge 58be11432e eg/config-type-path-docfix later to maint).
233 (merge 563f339d98 ch/clean-docfix later to maint).
234 (merge 4fbe83fcd9 hy/doc-show-is-like-log-not-diff-tree later to maint).
235 (merge 43abaaf008 ob/am-msgfix later to maint).
236 (merge c2c349a15c xz/commit-title-soft-limit-doc later to maint).