Skip to content

Commit ebc5da3

Browse files
committed
Git 2.0.2
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 2e93184 commit ebc5da3

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

Documentation/RelNotes/2.0.2.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,22 @@ Git v2.0.2 Release Notes
1111
* Recent updates to "git repack" started to duplicate objects that
1212
are in packfiles marked with .keep flag into the new packfile by
1313
mistake.
14+
15+
* "git clone -b brefs/tags/bar" would have mistakenly thought we were
16+
following a single tag, even though it was a name of the branch,
17+
because it incorrectly used strstr().
18+
19+
* "%G" (nothing after G) is an invalid pretty format specifier, but
20+
the parser did not notice it as garbage.
21+
22+
* Code to avoid adding the same alternate object store twice was
23+
subtly broken for a long time, but nobody seems to have noticed.
24+
25+
* A handful of code paths had to read the commit object more than
26+
once when showing header fields that are usually not parsed. The
27+
internal data structure to keep track of the contents of the commit
28+
object has been updated to reduce the need for this double-reading,
29+
and to allow the caller find the length of the object.
30+
31+
* During "git rebase --merge", a conflicted patch could not be
32+
skipped with "--skip" if the next one also conflicted.

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:v2.0.1/git.html[documentation for release 2.0.1]
46+
* link:v2.0.2/git.html[documentation for release 2.0.2]
4747

4848
* release notes for
49+
link:RelNotes/2.0.2.txt[2.0.2],
4950
link:RelNotes/2.0.1.txt[2.0.1],
5051
link:RelNotes/2.0.0.txt[2.0.0].
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=v2.0.1
4+
DEF_VER=v2.0.2
55

66
LF='
77
'

0 commit comments

Comments
 (0)