@@ -32,16 +32,22 @@ UI, Workflows & Features
32
32
The bug has been fixed in "less" version 406 (June 2007), and the
33
33
workaround has been removed in this release.
34
34
35
+ * Some documentation pages that used to ship only in the plain text
36
+ format are now formatted in HTML as well.
37
+
35
38
* A new configuration variable "diff.context" can be used to
36
39
give the default number of context lines in the patch output, to
37
40
override the hardcoded default of 3 lines.
38
41
39
- * "git format-patch" leraned the "--notes=<ref>" option to give
42
+ * "git format-patch" learned the "--notes=<ref>" option to give
40
43
notes for the commit after the three-dash lines in its output.
41
44
42
45
* "git log --grep=<pcre>" learned to honor the "grep.patterntype"
43
46
configuration set to "perl".
44
47
48
+ * "git replace -d <object>" now interprets <object>, instead of only
49
+ accepting full hex object name.
50
+
45
51
* "git rm $submodule" used to punt on removing a submodule working
46
52
tree to avoid losing the repository embedded in it. Because
47
53
recent git uses a mechanism to separate the submodule repository
@@ -70,6 +76,8 @@ Foreign Interface
70
76
71
77
Performance, Internal Implementation, etc.
72
78
79
+ * Compilation on Cygwin with newer header files are supported now.
80
+
73
81
* The logic to generate the initial advertisement from
74
82
"upload-pack" (what is invoked by "git fetch" on the other side
75
83
of the connection) to list what refs are available in the
@@ -78,6 +86,10 @@ Performance, Internal Implementation, etc.
78
86
* The logic to find set of attributes that match a given path has
79
87
been optimized.
80
88
89
+ * Use preloadindex in "git diff-index" and "git update-index", which
90
+ has a nice speedup on systems with slow stat calls (and even on
91
+ Linux).
92
+
81
93
82
94
Also contains minor documentation updates and code clean-ups.
83
95
@@ -132,11 +144,11 @@ details).
132
144
(merge 11fbe18 po/maint-refs-replace-docs later to maint).
133
145
134
146
* Various rfc2047 quoting issues around a non-ASCII name on the
135
- From: line in the output from format-patch has been corrected.
147
+ From: line in the output from format-patch have been corrected.
136
148
(merge 25dc8da js/format-2047 later to maint).
137
149
138
150
* Sometimes curl_multi_timeout() function suggested a wrong timeout
139
- value when there is no file descriptors to wait on and the http
151
+ value when there is no file descriptor to wait on and the http
140
152
transport ended up sleeping for minutes in select(2) system call.
141
153
A workaround has been added for this.
142
154
(merge 7202b81 sz/maint-curl-multi-timeout later to maint).
@@ -149,3 +161,27 @@ details).
149
161
* "git diff -G<pattern>" did not honor textconv filter when looking
150
162
for changes.
151
163
(merge b1c2f57 jk/maint-diff-grep-textconv later to maint).
164
+
165
+ * Some HTTP servers ask for auth only during the actual packing phase
166
+ (not in ls-remote phase); this is not really a recommended
167
+ configuration, but the clients used to fail to authenticate with
168
+ such servers.
169
+ (merge 2e736fd jk/maint-http-half-auth-fetch later to maint).
170
+
171
+ * "git p4" used to try expanding malformed "$keyword$" that spans
172
+ across multiple lines.
173
+ (merge 6b2bf41 pw/maint-p4-rcs-expansion-newline later to maint).
174
+
175
+ * Syntax highlighting in "gitweb" was not quite working.
176
+ (merge 048b399 rh/maint-gitweb-highlight-ext later to maint).
177
+
178
+ * RSS feed from "gitweb" had a xss hole in its title output.
179
+ (merge 0f0ecf6 jk/maint-gitweb-xss later to maint).
180
+
181
+ * "git config --path $key" segfaulted on "[section] key" (a boolean
182
+ "true" spelled without "=", not "[section] key = true").
183
+ (merge 962c38e cn/config-missing-path later to maint).
184
+
185
+ * "git checkout -b foo" while on an unborn branch did not say
186
+ "Switched to a new branch 'foo'" like other cases.
187
+ (merge afa8c07 jk/checkout-out-of-unborn later to maint).
0 commit comments