Skip to content

Commit 7fb6bcf

Browse files
committed
GIT 1.6.4.3
Signed-off-by: Junio C Hamano <[email protected]>
1 parent d3d7d47 commit 7fb6bcf

File tree

4 files changed

+33
-3
lines changed

4 files changed

+33
-3
lines changed

Documentation/RelNotes-1.6.4.3.txt

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
GIT v1.6.4.3 Release Notes
2+
==========================
3+
4+
Fixes since v1.6.4.2
5+
--------------------
6+
7+
* "git clone" from an empty repository gave unnecessary error message,
8+
even though it did everything else correctly.
9+
10+
* "git cvsserver" invoked git commands via "git-foo" style, which has long
11+
been deprecated.
12+
13+
* "git fetch" and "git clone" had an extra sanity check to verify the
14+
presense of the corresponding *.pack file before downloading *.idx
15+
file by issuing a HEAD request. Github server however sometimes
16+
gave 500 (Internal server error) response to HEAD even if a GET
17+
request for *.pack file to the same URL would have succeeded, and broke
18+
clone over HTTP from some of their repositories. As a workaround, this
19+
verification has been removed (as it is not absolutely necessary).
20+
21+
* "git grep" did not like relative pathname to refer outside the current
22+
directory when run from a subdirectory.
23+
24+
* an error message from "git push" was formatted in a very ugly way.
25+
26+
* "git svn" did not quote the subversion user name correctly when
27+
running its author-prog helper program.
28+
29+
Other minor documentation updates are included.

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.6.4.2/git.html[documentation for release 1.6.4.2]
46+
* link:v1.6.4.3/git.html[documentation for release 1.6.4.3]
4747

4848
* release notes for
49+
link:RelNotes-1.6.4.3.txt[1.6.4.3],
4950
link:RelNotes-1.6.4.2.txt[1.6.4.2],
5051
link:RelNotes-1.6.4.1.txt[1.6.4.1],
5152
link:RelNotes-1.6.4.txt[1.6.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.6.4.2
4+
DEF_VER=v1.6.4.3
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.6.4.2.txt
1+
Documentation/RelNotes-1.6.4.3.txt

0 commit comments

Comments
 (0)