@@ -12,7 +12,7 @@ Backward compatibility notes
1212 $ git config core.pager "less -S"
1313
1414 to restore the traditional behaviour. It is expected that people
15- find output from the most subcommands easier to read with the new
15+ find output from most subcommands easier to read with the new
1616 default, except for "blame" which tends to produce really long
1717 lines. To override the new default only for "git blame", you can
1818 do this:
@@ -31,78 +31,76 @@ UI, Workflows & Features
3131 default value "FRSX" when we spawn "less" as the pager. "S" (chop
3232 long lines instead of wrapping) has been removed from this default
3333 set of options, because it is more or less a personal taste thing,
34- as opposed to others that have good justifications (i.e. "R" is
34+ as opposed to the others that have good justifications (i.e. "R" is
3535 very much justified because many kinds of output we produce are
3636 colored and "FX" is justified because output we produce is often
3737 shorter than a page).
3838
3939 * The logic and data used to compute the display width needed for
4040 UTF-8 strings have been updated to match Unicode 7.0 better.
4141
42- * HTTP-based transports learned to propagate the error messages from
43- the webserver better to the client coming over the HTTP transport.
42+ * HTTP-based transports learned to better propagate the error messages from
43+ the webserver to the client coming over the HTTP transport.
4444
4545 * The completion script for bash (in contrib/) has been updated to
46- handle aliases that define complex sequence of commands better .
46+ better handle aliases that define a complex sequence of commands.
4747
48- * The "core.preloadindex" configuration variable is by default
49- enabled, allowing modern platforms to take advantage of the
50- multiple cores they have .
48+ * The "core.preloadindex" configuration variable is enabled by default,
49+ allowing modern platforms to take advantage of their
50+ multiple cores.
5151
5252 * "git clone" applies the "if cloning from a local disk, physically
53- copy repository using hardlinks, unless otherwise told not to with
54- --no-local" optimization when url.*.insteadOf mechanism rewrites a
55- "git clone $URL" that refers to a repository over the network to a
53+ copy the repository using hardlinks, unless otherwise told not to with
54+ --no-local" optimization when the url.*.insteadOf mechanism rewrites a
55+ remote-repository "git clone $URL" into a
5656 clone from a local disk.
5757
58- * "git commit --date=<date>" option learned to read from more
58+ * "git commit --date=<date>" option learned more
5959 timestamp formats, including "--date=now".
6060
6161 * The `core.commentChar` configuration variable is used to specify a
62- custom comment character other than the default "#" to be used in
63- the commit log editor. This can be set to `auto` to attempt to
64- choose a different character that does not conflict with what
65- already starts a line in the message being edited for cases like
62+ custom comment character ( other than the default "#") for
63+ the commit message editor. This can be set to `auto` to attempt to
64+ choose a different character that does not conflict with any that
65+ already starts a line in the message being edited, for cases like
6666 "git commit --amend".
6767
68- * "git format-patch" learned --signature-file=<file> to take the mail
69- signature from .
68+ * "git format-patch" learned --signature-file=<file> to add the contents
69+ of a file as a signature to the mail message it produces .
7070
71- * "git grep" learned grep.fullname configuration variable to force
72- "--full-name" to be default. This may cause regressions on
73- scripted users that do not expect this new behaviour.
71+ * "git grep" learned the grep.fullname configuration variable to force
72+ "--full-name" to be the default. This may cause regressions for
73+ scripted users who do not expect this new behaviour.
7474
7575 * "git imap-send" learned to ask the credential helper for auth
7676 material.
7777
78- * "git log" and friends now understand the value "auto" set to the
78+ * "git log" and friends now understand the value "auto" for the
7979 "log.decorate" configuration variable to enable the "--decorate"
8080 option automatically when the output is sent to tty.
8181
82- * "git merge" without argument, even when there is an upstream
82+ * "git merge" without an argument, even when there is an upstream
8383 defined for the current branch, refused to run until
8484 merge.defaultToUpstream is set to true. Flip the default of that
8585 configuration variable to true.
8686
8787 * "git mergetool" learned to drive the vimdiff3 backend.
8888
8989 * mergetool.prompt used to default to 'true', always asking "do you
90- really want to run the tool on this path?". Among the two
91- purposes this prompt serves, ignore the use case to confirm that
92- the user wants to view particular path with the named tool, and
93- redefine the meaning of the prompt only to confirm the choice of
94- the tool made by the autodetection (for those who configured the
95- tool explicitly, the prompt shown for the latter purpose is
96- simply annoying).
97-
98- Strictly speaking, this is a backward incompatible change and the
90+ really want to run the tool on this path?". The default has been
91+ changed to 'false'. However, the prompt will still appear if
92+ mergetool used its autodetection system to guess which tool to use.
93+ Users who explicitly specify or configure a tool will no longer see
94+ the prompt by default.
95+
96+ Strictly speaking, this is a backward incompatible change and
9997 users need to explicitly set the variable to 'true' if they want
100- to resurrect the now-ignored use case .
98+ to be prompted to confirm running the tool on each path .
10199
102100 * "git replace" learned the "--edit" subcommand to create a
103101 replacement by editing an existing object.
104102
105- * "git replace" learned a "--graft" option to rewrite parents of a
103+ * "git replace" learned a "--graft" option to rewrite the parents of a
106104 commit.
107105
108106 * "git send-email" learned "--to-cover" and "--cc-cover" options, to
@@ -117,10 +115,10 @@ UI, Workflows & Features
117115 being edited as a comment in the editor.
118116
119117 * "git tag" learned to pay attention to "tag.sort" configuration, to
120- be used as the default sort order when no --sort=<value> the option
118+ be used as the default sort order when no --sort=<value> option
121119 is given.
122120
123- * "git verify-commit" command to check GPG signature in signed
121+ * A new "git verify-commit" command, to check GPG signatures in signed
124122 commits, in a way similar to "git verify-tag" is used to check
125123 signed tags, was added.
126124
@@ -129,8 +127,8 @@ Performance, Internal Implementation, etc.
129127
130128 * Build procedure for 'subtree' (in contrib/) has been cleaned up.
131129
132- * The support for the profile-feedback build, which has been left
133- bit-rotten for quite a while, has been updated.
130+ * Support for the profile-feedback build, which has
131+ bit-rotted for quite a while, has been updated.
134132
135133 * An experimental format to use two files (the base file and
136134 incremental changes relative to it) to represent the index has been
@@ -145,20 +143,14 @@ Performance, Internal Implementation, etc.
145143 * Eradication of "test $condition -a $condition" from our scripts
146144 continues.
147145
148- * The leaf function to check validity of a refname format has been
149- micro-optimized, using SSE2 instructions when available. A few
150- breakages during its development have been caught and fixed already
151- but there might remain some more still; please test and report if
152- you find any.
153-
154146 * The `core.deltabasecachelimit` used to default to 16 MiB , but this
155147 proved to be too small, and has been bumped to 96 MiB.
156148
157149 * "git blame" has been optimized greatly by reorganising the data
158150 structure that is used to keep track of the work to be done.
159151
160152 * "git diff" that compares 3-or-more trees (e.g. parents and the
161- result of a merge) have been optimized.
153+ result of a merge) has been optimized.
162154
163155 * The API to update/delete references are being converted to handle
164156 updates to multiple references in a transactional way. As an
@@ -194,8 +186,8 @@ notes for details).
194186 to a tty.
195187 (merge 38de156 mn/sideband-no-ansi later to maint).
196188
197- * Mishandling of patterns in .gitignore that has trailing SPs quoted
198- with backslashes (e.g. ones that end with "\ ") have been
189+ * Mishandling of patterns in .gitignore that have trailing SPs quoted
190+ with backslashes (e.g. ones that end with "\ ") has been
199191 corrected.
200192 (merge 97c1364be6b pb/trim-trailing-spaces later to maint).
201193
@@ -232,7 +224,7 @@ notes for details).
232224 and to allow the caller find the length of the object.
233225 (merge 218aa3a jk/commit-buffer-length later to maint).
234226
235- * The "mailmap.file" configuration option did not support the tilde
227+ * The "mailmap.file" configuration option did not support tilde
236228 expansion (i.e. ~user/path and ~/path).
237229 (merge 9352fd5 ow/config-mailmap-pathname later to maint).
238230
@@ -244,20 +236,20 @@ notes for details).
244236 * The unix-domain socket used by the sample credential cache daemon
245237 tried to unlink an existing stale one at a wrong path, if the path
246238 to the socket was given as an overlong path that does not fit in
247- sun_path member of the sockaddr_un structure.
239+ the sun_path member of the sockaddr_un structure.
248240 (merge 2869b3e rs/fix-unlink-unix-socket later to maint).
249241
250242 * An ancient rewrite passed a wrong pointer to a curl library
251243 function in a rarely used code path.
252244 (merge 479eaa8 ah/fix-http-push later to maint).
253245
254246 * "--ignore-space-change" option of "git apply" ignored the spaces
255- at the beginning of line too aggressively, which is inconsistent
256- with the option of the same name "diff" and "git diff" have.
247+ at the beginning of lines too aggressively, which is inconsistent
248+ with the option of the same name that "diff" and "git diff" have.
257249 (merge 14d3bb4 jc/apply-ignore-whitespace later to maint).
258250
259- * "git blame" miscounted number of columns needed to show localized
260- timestamps, resulting in jaggy left-side-edge of the source code
251+ * "git blame" miscounted the number of columns needed to show localized
252+ timestamps, resulting in a jaggy left-side-edge for the source code
261253 lines in its output.
262254 (merge dd75553 jx/blame-align-relative-time later to maint).
263255
@@ -271,17 +263,17 @@ notes for details).
271263 because it incorrectly used strstr().
272264 (merge 60a5f5f jc/fix-clone-single-starting-at-a-tag later to maint).
273265
274- * "git commit --allow-empty-messag -C $commit" did not work when the
266+ * "git commit --allow-empty-message -C $commit" did not work when the
275267 commit did not have any log message.
276268 (merge 076cbd6 jk/commit-C-pick-empty later to maint).
277269
278270 * "git diff --find-copies-harder" sometimes pretended as if the mode
279- bits have changed for paths that are marked with assume-unchanged
271+ bits have changed for paths that are marked with the assume-unchanged
280272 bit.
281273 (merge 5304810 jk/diff-files-assume-unchanged later to maint).
282274
283275 * "filter-branch" left an empty single-parent commit that results when
284- all parents of a merge commit gets mapped to the same commit, even
276+ all parents of a merge commit get mapped to the same commit, even
285277 under "--prune-empty".
286278 (merge 79bc4ef cb/filter-branch-prune-empty-degenerate-merges later to maint).
287279
@@ -314,10 +306,10 @@ notes for details).
314306 mergetag that was and was not correctly validated.
315307 (merge 42c55ce mg/fix-log-mergetag-color later to maint).
316308
317- * "log --show-signature" did not pay attention to "--graph" option.
309+ * "log --show-signature" did not pay attention to the "--graph" option.
318310 (merge cf3983d zk/log-graph-showsig later to maint).
319311
320- * "git mailinfo" used to read beyond the end of header string while
312+ * "git mailinfo" used to read beyond the ends of header strings while
321313 parsing an incoming e-mail message to extract the patch.
322314 (merge b1a013d rs/mailinfo-header-cmp later to maint).
323315
@@ -337,7 +329,7 @@ notes for details).
337329 (merge fb79947 rs/pack-objects-no-unnecessary-realloc later to maint).
338330
339331 * Recent updates to "git repack" started to duplicate objects that
340- are in packfiles marked with .keep flag into the new packfile by
332+ are in packfiles marked with the .keep flag into the new packfile by
341333 mistake.
342334 (merge d078d85 jk/repack-pack-keep-objects later to maint).
343335
@@ -375,14 +367,14 @@ notes for details).
375367 * "git status", even though it is a read-only operation, tries to
376368 update the index with refreshed lstat(2) info to optimize future
377369 accesses to the working tree opportunistically, but this could
378- race with a "read-write" operation that modify the index while it
370+ race with a "read-write" operation that modifies the index while it
379371 is running. Detect such a race and avoid overwriting the index.
380372 (merge 426ddee ym/fix-opportunistic-index-update-race later to maint).
381373
382374 * "git status" (and "git commit") behaved as if changes in a modified
383375 submodule are not there if submodule.*.ignore configuration is set,
384376 which was misleading. The configuration is only to unclutter diff
385- output during the course of development, and should not to hide
377+ output during the course of development, and not to hide
386378 changes in the "status" output to cause the users forget to commit
387379 them.
388380 (merge c215d3d jl/status-added-submodule-is-never-ignored later to maint).
0 commit comments