Merge branch 'jc/config-mak-document-darwin-vs-macosx'
[alt-git.git] / Documentation / RelNotes / 2.2.0.txt
blobf65de525397c192ba0ca0163de36575c0fb89f3a
1 Git v2.2 Release Notes
2 ======================
4 Updates since v2.1
5 ------------------
7 UI, Workflows & Features
9  * "git config --edit --global" starts from a skeletal per-user
10    configuration file contents, instead of a total blank, when the
11    user does not already have any.  This immediately reduces the
12    need for a later "Have you forgotten setting core.user?" and we
13    can add more to the template as we gain more experience.
16 Performance, Internal Implementation, etc.
18  * Looking up remotes configuration in a repository with very many
19    remotes defined has been optimized.
21  * There are cases where you lock and open to write a file, close it
22    to show the updated contents to external processes, and then have
23    to update the file again while still holding the lock, but the
24    lockfile API lacked support for such an access pattern.
26  * An in-core caching layer to let us avoid reading the same
27    configuration files number of times has been added.
29  * Various code paths have been cleaned up and simplified by using
30    "strbuf", "starts_with()", and "skip_prefix()" APIs more.
33 Also contains various documentation updates and code clean-ups.
36 Fixes since v2.1
37 ----------------
39  * "git log --pretty/format=" with an empty format string did not
40    mean the more obvious "No output whatsoever" but "Use default
41    format", which was counterintuitive.
42    (merge b9c7d6e jk/pretty-empty-format later to maint).
44  * Implementations of "tar" that do not understand an extended pax
45    header would extract the contents of it in a regular file; make
46    sure the permission bits of this file follows the same tar.umask
47    configuration setting.
50 Unless otherwise noted, all the fixes since v2.1 in the maintenance
51 track are contained in this release (see the maintenance releases'
52 notes for details).