Skip to content

Commit 3273ebc

Browse files
committed
GIT 1.6.1-rc1
Signed-off-by: Junio C Hamano <[email protected]>
1 parent aaab7ea commit 3273ebc

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

Documentation/RelNotes-1.6.1.txt

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ on.
2020

2121
* Various gitweb updates from repo.or.cz installation.
2222

23+
* Updates to emacs bindings.
24+
2325
(portability)
2426

2527
* A few test scripts used nonportable "grep" that did not work well on
@@ -31,6 +33,11 @@ on.
3133

3234
(performance)
3335

36+
* Many operations that are lstat(3) heavy can be told to pre-execute
37+
necessary lstat(3) in parallel before their main operations, which
38+
potentially gives much improved performance for cold-cache cases or in
39+
environments with weak metadata caching (e.g. NFS).
40+
3441
* The underlying diff machinery to produce textual output has been
3542
optimized, which would result in faster "git blame" processing.
3643

@@ -169,6 +176,9 @@ on.
169176
* "git merge -s $strategy" can use a custom built strategy if you have a
170177
command "git-merge-$strategy" on your $PATH.
171178

179+
* "git pull" (and "git fetch") can be told to operate "-v"erbosely or
180+
"-q"uietly.
181+
172182
* "git push" can be told to reject deletion of refs with receive.denyDeletes
173183
configuration.
174184

@@ -184,6 +194,10 @@ on.
184194
* when giving up resolving a conflicted merge, "git reset --hard" failed
185195
to remove new paths from the working tree. [cherry-pick to 'maint'?]
186196

197+
* "git send-email" can be given revision range instead of files and
198+
maildirs on the command line, and automatically runs format-patch to
199+
generate patches for the given revision range.
200+
187201
* "git submodule foreach" subcommand allows you to iterate over checked
188202
out submodules.
189203

@@ -245,15 +259,12 @@ release, unless otherwise noted.
245259
timestamp part, exposing internal implementation detail. Also these did
246260
not work with --fixed-strings match at all.
247261

248-
* "git tag" did not complain about incompatible combination of options
249-
e.g. "tag -l -d" (fix scheduled to be further downmerged to maint).
250-
251262
* Internal diff machinery had a corner case performance bug that choked on a
252263
large file with many repeated contents (fix scheduled to be further cherry-
253264
picked to maint).
254265

255266
--
256267
exec >/var/tmp/1
257-
O=v1.6.0.4-697-g168d5bd
268+
O=v1.6.0.4-854-gaaab7ea
258269
echo O=$(git describe master)
259270
git shortlog --no-merges $O..master ^maint

0 commit comments

Comments
 (0)