Skip to content

Commit 9504f3d

Browse files
committed
Git 1.6.6.1
Signed-off-by: Junio C Hamano <[email protected]>
1 parent 66276d9 commit 9504f3d

File tree

3 files changed

+16
-8
lines changed

3 files changed

+16
-8
lines changed

Documentation/RelNotes-1.6.6.1.txt

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@ Git v1.6.6.1 Release Notes
44
Fixes since v1.6.6
55
------------------
66

7+
* "git blame" did not work well when commit lacked the author name.
8+
79
* "git branch -a name" wasn't diagnosed as an error.
810

11+
* "git count-objects" did not handle packfiles that are bigger than 4G on
12+
platforms with 32-bit off_t.
13+
14+
* "git checkout -m other" while on a branch that does not have any commit
15+
segfaulted, instead of failing.
16+
917
* "git fast-import" choked when fed a tag that do not point at a
1018
commit.
1119

@@ -15,16 +23,15 @@ Fixes since v1.6.6
1523
* "git grep -L" didn't show empty files (they should never match, and
1624
they should always appear in -L output as unmatching).
1725

26+
* "git rebase -i" did not abort cleanly if it failed to launch the editor.
27+
28+
* "git reset --hard" did not work correctly when GIT_WORK_TREE environment
29+
variable is used to point at the root of the true work tree.
30+
1831
* http-backend was not listed in the command list in the documentation.
1932

2033
* Building on FreeBSD (both 7 and 8) needs OLD_ICONV set in the Makefile
2134

2235
* "git checkout -m some-branch" while on an unborn branch crashed.
2336

2437
Other minor documentation updates are included.
25-
26-
--
27-
exec >/var/tmp/1
28-
O=v1.6.6-39-g6304c40
29-
echo O=$(git describe maint)
30-
git shortlog --no-merges $O..maint

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/git.html[documentation for release 1.6.6]
46+
* link:v1.6.6.1/git.html[documentation for release 1.6.6.1]
4747

4848
* release notes for
49+
link:RelNotes-1.6.6.1.txt[1.6.6.1],
4950
link:RelNotes-1.6.6.txt[1.6.6].
5051

5152
* link:v1.6.5.8/git.html[documentation for release 1.6.5.8]

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

66
LF='
77
'

0 commit comments

Comments
 (0)