Skip to content

Commit d7d2c87

Browse files
committed
Git 1.8.4.3
Signed-off-by: Junio C Hamano <[email protected]>
1 parent cdc0c0f commit d7d2c87

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

Documentation/RelNotes/1.8.4.3.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ Git v1.8.4.3 Release Notes
44
Fixes since v1.8.4.2
55
--------------------
66

7+
* The interaction between use of Perl in our test suite and NO_PERL
8+
has been clarified a bit.
9+
10+
* A fast-import stream expresses a pathname with funny characters by
11+
quoting them in C style; remote-hg remote helper (in contrib/)
12+
forgot to unquote such a path.
13+
14+
* One long-standing flaw in the pack transfer protocol used by "git
15+
clone" was that there was no way to tell the other end which branch
16+
"HEAD" points at, and the receiving end needed to guess. A new
17+
capability has been defined in the pack protocol to convey this
18+
information so that cloning from a repository with more than one
19+
branches pointing at the same commit where the HEAD is at now
20+
reliably sets the initial branch in the resulting repository.
21+
22+
* We did not handle cases where http transport gets redirected during
23+
the authorization request (e.g. from http:// to https://).
24+
725
* "git rev-list --objects ^v1.0^ v1.0" gave v1.0 tag itself in the
826
output, but "git rev-list --objects v1.0^..v1.0" did not.
927

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.8.4.2/git.html[documentation for release 1.8.4.2]
46+
* link:v1.8.4.3/git.html[documentation for release 1.8.4.3]
4747

4848
* release notes for
49+
link:RelNotes/1.8.4.3.txt[1.8.4.3],
4950
link:RelNotes/1.8.4.2.txt[1.8.4.2],
5051
link:RelNotes/1.8.4.1.txt[1.8.4.1],
5152
link:RelNotes/1.8.4.txt[1.8.4].

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.8.4.2
4+
DEF_VER=v1.8.4.3
55

66
LF='
77
'

0 commit comments

Comments
 (0)