Skip to content

Commit 3a52578

Browse files
committed
Git 2.3.4
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 437ed4c commit 3a52578

File tree

4 files changed

+36
-3
lines changed

4 files changed

+36
-3
lines changed

Documentation/RelNotes/2.3.4.txt

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
Git v2.3.4 Release Notes
2+
========================
3+
4+
Fixes since v2.3.3
5+
------------------
6+
7+
* The 'color.status.unmerged' configuration was not described.
8+
9+
* "git log --decorate" did not reset colors correctly around the
10+
branch names.
11+
12+
* "git -C '' subcmd" refused to work in the current directory, unlike
13+
"cd ''" which silently behaves as a no-op.
14+
15+
* "git imap-send" learned to optionally talk with an IMAP server via
16+
libcURL; because there is no other option when Git is built with
17+
NO_OPENSSL option, use that codepath by default under such
18+
configuration.
19+
20+
* A workaround for certain build of GPG that triggered false breakage
21+
in a test has been added.
22+
23+
* "git rebase -i" recently started to include the number of
24+
commits in the insn sheet to be processed, but on a platform
25+
that prepends leading whitespaces to "wc -l" output, the numbers
26+
are shown with extra whitespaces that aren't necessary.
27+
28+
* We did not parse username followed by literal IPv6 address in SSH
29+
transport URLs, e.g. ssh://user@[2001:db8::1]:22/repo.git
30+
correctly.
31+
32+
Also contains typofixes, documentation updates and trivial code clean-ups.

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 the 'master'
4343
branch of the `git.git` repository.
4444
Documentation for older releases are available here:
4545

46-
* link:v2.3.3/git.html[documentation for release 2.3.3]
46+
* link:v2.3.4/git.html[documentation for release 2.3.4]
4747

4848
* release notes for
49+
link:RelNotes/2.3.4.txt[2.3.4],
4950
link:RelNotes/2.3.3.txt[2.3.3],
5051
link:RelNotes/2.3.2.txt[2.3.2],
5152
link:RelNotes/2.3.1.txt[2.3.1],

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=v2.3.3
4+
DEF_VER=v2.3.4
55

66
LF='
77
'

RelNotes

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

0 commit comments

Comments
 (0)