Skip to content

Commit 4133fd2

Browse files
committed
Git 1.6.6.2
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 216d2e0 commit 4133fd2

File tree

4 files changed

+50
-3
lines changed

4 files changed

+50
-3
lines changed

Documentation/RelNotes-1.6.6.2.txt

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
Git v1.6.6.2 Release Notes
2+
==========================
3+
4+
Fixes since v1.6.6.2
5+
--------------------
6+
7+
* recursive merge didn't correctly diagnose its own programming errors,
8+
and instead caused the caller to segfault.
9+
10+
* The new "smart http" aware clients probed the web servers to see if
11+
they support smart http, but did not fall back to dumb http transport
12+
correctly with some servers.
13+
14+
* Time based reflog syntax e.g. "@{yesterday}" didn't diagnose a misspelled
15+
time specification and instead assumed "@{now}".
16+
17+
* "git archive HEAD -- no-such-directory" produced an empty archive
18+
without complaining.
19+
20+
* "git blame -L start,end -- file" misbehaved when given a start that is
21+
larger than the number of lines in the file.
22+
23+
* "git checkout -m" didn't correctly call custom merge backend supplied
24+
by the end user.
25+
26+
* "git config -f <file>" misbehaved when run from a subdirectory.
27+
28+
* "git cvsserver" didn't like having regex metacharacters (e.g. '+') in
29+
CVSROOT environment.
30+
31+
* "git fast-import" did not correctly handle large blobs that may
32+
bust the pack size limit.
33+
34+
* "git gui" is supposed to work even when launched from inside a .git
35+
directory.
36+
37+
* "git gui" misbehaved when applying a hunk that ends with deletion.
38+
39+
* "git imap-send" did not honor imap.preformattedHTML as documented.
40+
41+
* "git log" family incorrectly showed the commit notes unconditionally by
42+
mistake, which was especially irritating when running "git log --oneline".
43+
44+
* "git status" shouldn't require an write access to the repository.
45+
46+
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.6.1/git.html[documentation for release 1.6.6.1]
46+
* link:v1.6.6.2/git.html[documentation for release 1.6.6.2]
4747

4848
* release notes for
49+
link:RelNotes-1.6.6.2.txt[1.6.6.2],
4950
link:RelNotes-1.6.6.1.txt[1.6.6.1],
5051
link:RelNotes-1.6.6.txt[1.6.6].
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.6.6.1
4+
DEF_VER=v1.6.6.2
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.6.1.txt
1+
Documentation/RelNotes-1.6.6.2.txt

0 commit comments

Comments
 (0)