Skip to content

Commit c5e5f60

Browse files
committed
Git 1.7.0.1
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent c0d3a38 commit c5e5f60

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

Documentation/RelNotes-1.7.0.1.txt

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,17 @@ Fixes since v1.7.0
77
* In a freshly created repository "rev-parse HEAD^0" complained that
88
it is dangling symref, even though "rev-parse HEAD" didn't.
99

10+
* "git show :no-such-name" tried to access the index without bounds
11+
check, leading to a potential segfault.
12+
1013
* Message from "git cherry-pick" was harder to read and use than necessary
1114
when it stopped due to conflicting changes.
1215

16+
* We referred to ".git/refs/" throughout the documentation when we
17+
meant to talk about abstract notion of "ref namespace". Because
18+
people's repositories often have packed refs these days, this was
19+
confusing.
20+
1321
* "git diff --output=/path/that/cannot/be/written" did not correctly
1422
error out.
1523

@@ -24,8 +32,4 @@ Fixes since v1.7.0
2432
option was propagated to "git stash drop" that is internally run at the
2533
end.
2634

27-
--
28-
exec >/var/tmp/1
29-
echo O=$(git describe)
30-
O=v1.7.0-22-gc69f921
31-
git shortlog $O..
35+
And other minor fixes and documentation updates.

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.7.0/git.html[documentation for release 1.7.0]
46+
* link:v1.7.0.1/git.html[documentation for release 1.7.0.1]
4747

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

5152
* link:v1.6.6.2/git.html[documentation for release 1.6.6.2]

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.7.0.GIT
4+
DEF_VER=v1.7.0.1
55

66
LF='
77
'

0 commit comments

Comments
 (0)