@@ -4,6 +4,12 @@ Git v2.2 Release Notes
4
4
Updates since v2.1
5
5
------------------
6
6
7
+ Ports
8
+
9
+ * Building on older MacOS X systems automatically sets
10
+ the necessary NO_APPLE_COMMON_CRYPTO build-time option.
11
+
12
+
7
13
UI, Workflows & Features
8
14
9
15
* "git config --edit --global" starts from a skeletal per-user
@@ -12,9 +18,17 @@ UI, Workflows & Features
12
18
need for a later "Have you forgotten setting core.user?" and we
13
19
can add more to the template as we gain more experience.
14
20
21
+ * "git stash list -p" used to be almost always a no-op because each
22
+ stash entry is represented as a merge commit. It learned to show
23
+ the difference between the base commit version and the working tree
24
+ version, which is in line with what "git show" gives.
15
25
16
26
Performance, Internal Implementation, etc.
17
27
28
+ * In tests, we have been using NOT_{MINGW,CYGWIN} test prerequisites
29
+ long before negated prerequisites e.g. !MINGW were invented.
30
+ The former has been converted to the latter to avoid confusion.
31
+
18
32
* Looking up remotes configuration in a repository with very many
19
33
remotes defined has been optimized.
20
34
@@ -36,6 +50,10 @@ Also contains various documentation updates and code clean-ups.
36
50
Fixes since v2.1
37
51
----------------
38
52
53
+ Unless otherwise noted, all the fixes since v2.1 in the maintenance
54
+ track are contained in this release (see the maintenance releases'
55
+ notes for details).
56
+
39
57
* "git log --pretty/format=" with an empty format string did not
40
58
mean the more obvious "No output whatsoever" but "Use default
41
59
format", which was counterintuitive.
@@ -46,7 +64,28 @@ Fixes since v2.1
46
64
sure the permission bits of this file follows the same tar.umask
47
65
configuration setting.
48
66
67
+ * "git -c section.var command" and "git -c section.var= command"
68
+ should pass the configuration differently (the former should be a
69
+ boolean true, the latter should be an empty string).
70
+ (merge a789ca7 jk/command-line-config-empty-string later to maint).
49
71
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).
72
+ * Applying a patch not generated by Git in a subdirectory used to
73
+ check the whitespace breakage using the attributes for incorrect
74
+ paths. Also whitespace checks were performed even for paths
75
+ excluded via "git apply --exclude=<path>" mechanism.
76
+ (merge 477a08a jc/apply-ws-prefix later to maint).
77
+
78
+ * "git bundle create" with date-range specification were meant to
79
+ exclude tags outside the range, but it didn't.
80
+ (merge 2c8544a lf/bundle-exclusion later to maint).
81
+
82
+ * "git add x" where x that used to be a directory has become a
83
+ symbolic link to a directory misbehaved.
84
+ (merge ccad42d rs/refresh-beyond-symlink later to maint).
85
+
86
+ * The prompt script checked $GIT_DIR/ref/stash file to see if there
87
+ is a stash, which was a no-no.
88
+ (merge 0fa7f01 jk/prompt-stash-could-be-packed later to maint).
89
+
90
+ * Pack-protocol documentation had a minor typo.
91
+ (merge 5d146f7 sp/pack-protocol-doc-on-shallow later to maint).
0 commit comments