Skip to content

Commit cf5c51e

Browse files
committed
Sync with 1.5.4.2 and start 1.5.5 Release Notes
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 7cb97da commit cf5c51e

File tree

5 files changed

+83
-3
lines changed

5 files changed

+83
-3
lines changed

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ H. Peter Anvin <hpa@bonde.sc.orionmulti.com>
1717
H. Peter Anvin <hpa@tazenda.sc.orionmulti.com>
1818
H. Peter Anvin <hpa@trantor.hos.anvin.org>
1919
Horst H. von Brand <vonbrand@inf.utfsm.cl>
20+
Jay Soffian <jaysoffian+git@gmail.com>
2021
Joachim Berdal Haga <cjhaga@fys.uio.no>
2122
Jon Loeliger <jdl@freescale.com>
2223
Jon Seymour <jon@blackcubes.dyndns.org>

Documentation/RelNotes-1.5.5.txt

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
GIT v1.5.5 Release Notes
2+
========================
3+
4+
Updates since v1.5.4
5+
--------------------
6+
7+
(performance)
8+
9+
* On platforms with suboptimal qsort(3) implementation, there
10+
is an option to use more reasonable substitute we ship with
11+
our software.
12+
13+
* New configuration variable "pack.packsizelimit" can be used
14+
in place of command line option --max-pack-size.
15+
16+
* "git fetch" over the native git protocol used to make a
17+
connection to find out the set of current remote refs and
18+
another to actually download the pack data. We now use only
19+
one connection for these tasks.
20+
21+
* "git commit" does not run lstat(2) more than necessary
22+
anymore.
23+
24+
(usability, bells and whistles)
25+
26+
* You can be warned when core.autocrlf conversion is applied in
27+
such a way that results in an irreversible conversion.
28+
29+
* A pattern "foo/" in .gitignore file now matches a directory
30+
"foo". Pattern "foo" also matches as before.
31+
32+
* "git describe" learned to limit the tags to be used for
33+
naming with --match option.
34+
35+
* "git describe --contains" now barfs when the named commit
36+
cannot be described.
37+
38+
* bash completion's prompt helper function can talk about
39+
operation in-progress (e.g. merge, rebase, etc.).
40+
41+
* "git commit" learned a new hook "prepare-commit-msg" that can
42+
inspect what is going to be committed and prepare the commit
43+
log message template to be edited.
44+
45+
* "git gui" learned an auto-spell checking.
46+
47+
* "git send-email" learned to prompt for passwords
48+
interactively.
49+
50+
* "git send-email" learned an easier way to suppress CC
51+
recipients.
52+
53+
* Various "git cvsimport", "git cvsexportcommit", "git svn" and
54+
"git p4" improvements.
55+
56+
(internal)
57+
58+
* Duplicated code between git-help and git-instaweb that
59+
launches user's preferred browser has been refactored.
60+
61+
* It is now easier to write test scripts that records known
62+
breakages.
63+
64+
65+
Fixes since v1.5.4
66+
------------------
67+
68+
All of the fixes in v1.5.4 maintenance series are included in
69+
this release, unless otherwise noted.
70+
71+
72+
---
73+
exec >/var/tmp/1
74+
O=v1.5.4
75+
O=v1.5.4.2-122-g7cb97da
76+
echo O=`git describe refs/heads/master`
77+
git shortlog --no-merges $O..refs/heads/master ^refs/heads/maint
78+

Documentation/git.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,10 @@ unreleased) version of git, that is available from 'master'
4343
branch of the `git.git` repository.
4444
Documentation for older releases are available here:
4545

46-
* link:v1.5.4.1/git.html[documentation for release 1.5.4.1]
46+
* link:v1.5.4.2/git.html[documentation for release 1.5.4.2]
4747

4848
* release notes for
49+
link:RelNotes-1.5.4.2.txt[1.5.4.2],
4950
link:RelNotes-1.5.4.1.txt[1.5.4.1],
5051
link:RelNotes-1.5.4.txt[1.5.4].
5152

GIT-VERSION-GEN

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
GVF=GIT-VERSION-FILE
4-
DEF_VER=v1.5.4.2.GIT
4+
DEF_VER=v1.5.4.GIT
55

66
LF='
77
'

RelNotes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Documentation/RelNotes-1.5.4.2.txt
1+
Documentation/RelNotes-1.5.5.txt

0 commit comments

Comments
 (0)