.mailmap: map different names with the same email address together
[git.git] / Documentation / RelNotes / 2.1.0.txt
blobeb6b3c3620e0dd092d489b5fd7f2f6117c093814
1 Git v2.1 Release Notes
2 ======================
4 Backward compatibility notes
5 ----------------------------
7  * The default value we give to the environment variable LESS has been
8    changed from "FRSX" to "FRX", losing "S" (chop long lines instead
9    of wrapping).  Existing users who prefer not to see line-wrapped
10    output may want to set
12      $ git config core.pager "less -S"
14    to restore the traditional behaviour.  It is expected that people
15    find output from the most subcommands easier to read with the new
16    default, except for "blame" which tends to produce really long
17    lines.  To override the new default only for "git blame", you can
18    do this:
20      $ git config pager.blame "less -S"
22  * A few disused directories in contrib/ have been retired.
25 Updates since v2.0
26 ------------------
28 UI, Workflows & Features
30  * Since the very beginning of Git, we gave the LESS environment a
31    default value "FRSX" when we spawn "less" as the pager.  "S" (chop
32    long lines instead of wrapping) has been removed from this default
33    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
35    very much justified because many kinds of output we produce are
36    colored and "FX" is justified because output we produce is often
37    shorter than a page).
39  * The logic and data used to compute the display width needed for
40    UTF-8 strings have been updated to match Unicode 7.0 better.
42  * HTTP-based transports learned to propagate the error messages from
43    the webserver better to the client coming over the HTTP transport.
45  * The completion script for bash (in contrib/) has been updated to
46    handle aliases that define complex sequence of commands better.
48  * The "core.preloadindex" configuration variable is by default
49    enabled, allowing modern platforms to take advantage of the
50    multiple cores they have.
52  * "git commit --date=<date>" option learned to read from more
53    timestamp formats, including "--date=now".
55  * The `core.commentChar` configuration variable is used to specify a
56    custom comment character other than the default "#" to be used in
57    the commit log editor.  This can be set to `auto` to attempt to
58    choose a different character that does not conflict with what
59    already starts a line in the message being edited for cases like
60    "git commit --amend".
62  * "git format-patch" learned --signature-file=<file> to take the mail
63    signature from.
65  * "git grep" learned grep.fullname configuration variable to force
66    "--full-name" to be default.  This may cause regressions on
67    scripted users that do not expect this new behaviour.
69  * "git imap-send" learned to ask the credential helper for auth
70    material.
72  * "git log" and friends now understand the value "auto" set to the
73    "log.decorate" configuration variable to enable the "--decorate"
74    option automatically when the output is sent to tty.
76  * "git merge" without argument, even when there is an upstream
77    defined for the current branch, refused to run until
78    merge.defaultToUpstream is set to true.  Flip the default of that
79    configuration variable to true.
81  * "git mergetool" learned to drive the vimdiff3 backend.
83  * mergetool.prompt used to default to 'true', always asking "do you
84    really want to run the tool on this path?".  Among the two
85    purposes this prompt serves, ignore the use case to confirm that
86    the user wants to view particular path with the named tool, and
87    redefine the meaning of the prompt only to confirm the choice of
88    the tool made by the autodetection (for those who configured the
89    tool explicitly, the prompt shown for the latter purpose is
90    simply annoying).
92    Strictly speaking, this is a backward incompatible change and the
93    users need to explicitly set the variable to 'true' if they want
94    to resurrect the now-ignored use case.
96  * "git replace" learned the "--edit" subcommand to create a
97    replacement by editing an existing object.
99  * "git send-email" learned "--to-cover" and "--cc-cover" options, to
100    tell it to copy To: and Cc: headers found in the first input file
101    when emitting later input files.
103  * "git svn" learned to cope with malformed timestamps with only one
104    digit in the hour part, e.g. 2014-01-07T5:01:02.048176Z, emitted
105    by some broken subversion server implementations.
107  * "git tag" when editing the tag message shows the name of the tag
108    being edited as a comment in the editor.
110  * "git verify-commit" command to check GPG signature in signed
111    commits, in a way similar to "git verify-tag" is used to check
112    signed tags, was added.
115 Performance, Internal Implementation, etc.
117  * Build procedure for 'subtree' (in contrib/) has been cleaned up.
119  * An experimental format to use two files (the base file and
120    incremental changes relative to it) to represent the index has been
121    introduced; this may reduce I/O cost of rewriting a large index
122    when only small part of the working tree changes.
124  * Effort to shrink the size of patches Windows folks maintain on top
125    by upstreaming them continues.
127  * Patches maintained by msysgit folks for Windows port are being
128    upstreamed here a bit by bit.
130  * The leaf function to check validity of a refname format has been
131    micro-optimized, using SSE2 instructions when available.  A few
132    breakages during its development have been caught and fixed already
133    but there might remain some more still; please test and report if
134    you find any.
136  * The `core.deltabasecachelimit` used to default to 16 MiB , but this
137    proved to be too small, and has been bumped to 96 MiB.
139  * "git blame" has been optimized greatly by reorganising the data
140    structure that is used to keep track of the work to be done.
142  * "git diff" that compares 3-or-more trees (e.g. parents and the
143    result of a merge) have been optimized.
145  * The API to update/delete references are being converted to handle
146    updates to multiple references in a transactional way.  As an
147    example, "update-ref --stdin [-z]" has been updated to use this
148    API.
150  * skip_prefix() and strip_suffix() API functions are used a lot more
151    widely throughout the codebase now.
153  * Parts of the test scripts can be skipped by using a range notation,
154    e.g. "sh t1234-test.sh --run='1-4 6 8-'" to omit test piece 5 and 7
155    and run everything else.
158 Also contains various documentation updates and code clean-ups.
161 Fixes since v2.0
162 ----------------
164 Unless otherwise noted, all the fixes since v2.0 in the maintenance
165 track are contained in this release (see the maintenance releases'
166 notes for details).
168  * We used to unconditionally disable the pager in the pager process
169    we spawn to feed out output, but that prevented people who want to
170    run "less" within "less" from doing so.
171    (merge c0459ca je/pager-do-not-recurse later to maint).
173  * Tools that read diagnostic output in our standard error stream do
174    not want to see terminal control sequence (e.g. erase-to-eol).
175    Detect them by checking if the standard error stream is connected
176    to a tty.
177    (merge 38de156 mn/sideband-no-ansi later to maint).
179  * Mishandling of patterns in .gitignore that has trailing SPs quoted
180    with backslashes (e.g. ones that end with "\ ") have been
181    corrected.
182    (merge 97c1364be6b pb/trim-trailing-spaces later to maint).
184  * Reworded the error message given upon a failure to open an existing
185    loose object file due to e.g. permission issues; it was reported as
186    the object being corrupt, but that is not quite true.
187    (merge d6c8a05 jk/report-fail-to-read-objects-better later to maint).
189  * "git log -2master" is a common typo that shows two commits starting
190    from whichever random branch that is not 'master' that happens to
191    be checked out currently.
192    (merge e3fa568 jc/revision-dash-count-parsing later to maint).
194  * Code to avoid adding the same alternate object store twice was
195    subtly broken for a long time, but nobody seems to have noticed.
196    (merge 80b4785 rs/fix-alt-odb-path-comparison later to maint).
198  * The "%<(10,trunc)%s" pretty format specifier in the log family of
199    commands is used to truncate the string to a given length (e.g. 10
200    in the example) with padding to column-align the output, but did
201    not take into account that number of bytes and number of display
202    columns are different.
203    (merge 7d50987 as/pretty-truncate later to maint).
205  * "%G" (nothing after G) is an invalid pretty format specifier, but
206    the parser did not notice it as garbage.
207    (merge 958b2eb jk/pretty-G-format-fixes later to maint).
209  * A handful of code paths had to read the commit object more than
210    once when showing header fields that are usually not parsed.  The
211    internal data structure to keep track of the contents of the commit
212    object has been updated to reduce the need for this double-reading,
213    and to allow the caller find the length of the object.
214    (merge 218aa3a jk/commit-buffer-length later to maint).
216  * The "mailmap.file" configuration option did not support the tilde
217    expansion (i.e. ~user/path and ~/path).
218    (merge 9352fd5 ow/config-mailmap-pathname later to maint).
220  * The completion scripts (in contrib/) did not know about quite a few
221    options that are common between "git merge" and "git pull", and a
222    couple of options unique to "git merge".
223    (merge 8fee872 jk/complete-merge-pull later to maint).
225  * An ancient rewrite passed a wrong pointer to a curl library
226    function in a rarely used code path.
227    (merge 479eaa8 ah/fix-http-push later to maint).
229  * "--ignore-space-change" option of "git apply" ignored the spaces
230    at the beginning of line too aggressively, which is inconsistent
231    with the option of the same name "diff" and "git diff" have.
232    (merge 14d3bb4 jc/apply-ignore-whitespace later to maint).
234  * "git blame" miscounted number of columns needed to show localized
235    timestamps, resulting in jaggy left-side-edge of the source code
236    lines in its output.
237    (merge dd75553 jx/blame-align-relative-time later to maint).
239  * "git blame" assigned the blame to the copy in the working-tree if
240    the repository is set to core.autocrlf=input and the file used CRLF
241    line endings.
242    (merge 4d4813a bc/blame-crlf-test later to maint).
244  * "git clone -b brefs/tags/bar" would have mistakenly thought we were
245    following a single tag, even though it was a name of the branch,
246    because it incorrectly used strstr().
247    (merge 60a5f5f jc/fix-clone-single-starting-at-a-tag later to maint).
249  * "git commit --allow-empty-messag -C $commit" did not work when the
250    commit did not have any log message.
251    (merge 076cbd6 jk/commit-C-pick-empty later to maint).
253  * "git diff --find-copies-harder" sometimes pretended as if the mode
254    bits have changed for paths that are marked with assume-unchanged
255    bit.
256    (merge 5304810 jk/diff-files-assume-unchanged later to maint).
258  * "filter-branch" left an empty single-parent commit that results when
259    all parents of a merge commit gets mapped to the same commit, even
260    under "--prune-empty".
261    (merge 79bc4ef cb/filter-branch-prune-empty-degenerate-merges later to maint).
263  * "git format-patch" did not enforce the rule that the "--follow"
264    option from the log/diff family of commands must be used with
265    exactly one pathspec.
266    (merge dd63f16 jk/diff-follow-must-take-one-pathspec later to maint).
268  * "git gc --auto" was recently changed to run in the background to
269    give control back early to the end-user sitting in front of the
270    terminal, but it forgot that housekeeping involving reflogs should
271    be done without other processes competing for accesses to the refs.
272    (merge 62aad18 nd/daemonize-gc later to maint).
274  * "git grep -O" to show the lines that hit in the pager did not work
275    well with case insensitive search.  We now spawn "less" with its
276    "-I" option when it is used as the pager (which is the default).
277    (merge f7febbe sk/spawn-less-case-insensitively-from-grep-O-i later to maint).
279  * We used to disable threaded "git index-pack" on platforms without
280    thread-safe pread(); use a different workaround for such
281    platforms to allow threaded "git index-pack".
282    (merge 3953949 nd/index-pack-one-fd-per-thread later to maint).
284  * The error reporting from "git index-pack" has been improved to
285    distinguish missing objects from type errors.
286    (merge 77583e7 jk/index-pack-report-missing later to maint).
288  * "log --show-signature" incorrectly decided the color to paint a
289    mergetag that was and was not correctly validated.
290    (merge 42c55ce mg/fix-log-mergetag-color later to maint).
292  * "log --show-signature" did not pay attention to "--graph" option.
293    (merge cf3983d zk/log-graph-showsig later to maint).
295  * "git mailinfo" used to read beyond the end of header string while
296    parsing an incoming e-mail message to extract the patch.
297    (merge b1a013d rs/mailinfo-header-cmp later to maint).
299  * On a case insensitive filesystem, merge-recursive incorrectly
300    deleted the file that is to be renamed to a name that is the same
301    except for case differences.
302    (merge baa37bf dt/merge-recursive-case-insensitive later to maint).
304  * Merging changes into a file that ends in an incomplete line made the
305    last line into a complete one, even when the other branch did not
306    change anything around the end of file.
307    (merge ba31180 mk/merge-incomplete-files later to maint).
309  * "git pack-objects" unnecessarily copied the previous contents when
310    extending the hashtable, even though it will populate the table
311    from scratch anyway.
312    (merge fb79947 rs/pack-objects-no-unnecessary-realloc later to maint).
314  * Recent updates to "git repack" started to duplicate objects that
315    are in packfiles marked with .keep flag into the new packfile by
316    mistake.
317    (merge d078d85 jk/repack-pack-keep-objects later to maint).
319  * "git rerere forget" did not work well when merge.conflictstyle
320    was set to a non-default value.
321    (merge de3d8bb fc/rerere-conflict-style later to maint).
323  * "git remote rm" and "git remote prune" can involve removing many
324    refs at once, which is not a very efficient thing to do when very
325    many refs exist in the packed-refs file.
326    (merge e6bea66 jl/remote-rm-prune later to maint).
328  * "git log --exclude=<glob> --all | git shortlog" worked as expected,
329    but "git shortlog --exclude=<glob> --all", which is supposed to be
330    identical to the above pipeline, was not accepted at the command
331    line argument parser level.
332    (merge eb07774 jc/shortlog-ref-exclude later to maint).
334  * The autostash mode of "git rebase -i" did not restore the dirty
335    working tree state if the user aborted the interactive rebase by
336    emptying the insn sheet.
337    (merge ddb5432 rr/rebase-autostash-fix later to maint).
339  * During "git rebase --merge", a conflicted patch could not be
340    skipped with "--skip" if the next one also conflicted.
341    (merge 95104c7 bc/fix-rebase-merge-skip later to maint).
343  * "git show -s" (i.e. show log message only) used to incorrectly emit
344    an extra blank line after a merge commit.
345    (merge ad2f725 mk/show-s-no-extra-blank-line-for-merges later to maint).
347  * "git status", even though it is a read-only operation, tries to
348    update the index with refreshed lstat(2) info to optimize future
349    accesses to the working tree opportunistically, but this could
350    race with a "read-write" operation that modify the index while it
351    is running.  Detect such a race and avoid overwriting the index.
352    (merge 426ddee ym/fix-opportunistic-index-update-race later to maint).
354  * "git status" (and "git commit") behaved as if changes in a modified
355    submodule are not there if submodule.*.ignore configuration is set,
356    which was misleading.  The configuration is only to unclutter diff
357    output during the course of development, and should not to hide
358    changes in the "status" output to cause the users forget to commit
359    them.
360    (merge c215d3d jl/status-added-submodule-is-never-ignored later to maint).
362  * Documentation for "git submodule sync" forgot to say that the subcommand
363    can take the "--recursive" option.
364    (merge 9393ae7 mc/doc-submodule-sync-recurse later to maint).
366  * "git update-index --cacheinfo" in 2.0 release crashed on a
367    malformed command line.
368    (merge c8e1ee4 jc/rev-parse-argh-dashed-multi-words later to maint).
370  * The mode to run tests with HTTP server tests disabled was broken.
371    (merge afa53fe na/no-http-test-in-the-middle later to maint).