Skip to content

Commit 52a3e01

Browse files
committed
Sync with 1.8.2.1
Signed-off-by: Junio C Hamano <[email protected]>
2 parents c17b651 + 5bda18c commit 52a3e01

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

Documentation/RelNotes/1.8.1.6.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Git 1.8.1.6 Release Notes
44
Fixes since v1.8.1.5
55
--------------------
66

7+
* An earlier change to the attribute system introduced at v1.8.1.2 by
8+
mistake stopped a pattern "dir" (without trailing slash) from
9+
matching a directory "dir" (it only wanted to allow pattern "dir/"
10+
to also match).
11+
712
* The code to keep track of what directory names are known to Git on
813
platforms with case insensitive filesystems can get confused upon a
914
hash collision between these pathnames and looped forever.

Documentation/RelNotes/1.8.2.1.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ Git v1.8.2.1 Release Notes
44
Fixes since v1.8.2
55
------------------
66

7+
* An earlier change to the attribute system introduced at v1.8.1.2 by
8+
mistake stopped a pattern "dir" (without trailing slash) from
9+
matching a directory "dir" (it only wanted to allow pattern "dir/"
10+
to also match).
11+
712
* Verification of signed tags were not done correctly when not in C
813
or en/US locale.
914

Documentation/git.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,16 @@ 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.8.2/git.html[documentation for release 1.8.2]
46+
* link:v1.8.2.1/git.html[documentation for release 1.8.2.1]
4747

4848
* release notes for
49+
link:RelNotes/1.8.2.1.txt[1.8.2.1].
4950
link:RelNotes/1.8.2.txt[1.8.2].
5051

51-
* link:v1.8.1.5/git.html[documentation for release 1.8.1.5]
52+
* link:v1.8.1.6/git.html[documentation for release 1.8.1.6]
5253

5354
* release notes for
55+
link:RelNotes/1.8.1.6.txt[1.8.1.6],
5456
link:RelNotes/1.8.1.5.txt[1.8.1.5],
5557
link:RelNotes/1.8.1.4.txt[1.8.1.4],
5658
link:RelNotes/1.8.1.3.txt[1.8.1.3],

contrib/remote-helpers/test-hg.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ test_expect_success 'update bookmark' '
115115
git push
116116
) &&
117117
118-
hg -R hgrepo bookmarks | grep "devel\s\+3:"
118+
hg -R hgrepo bookmarks | egrep "devel[ ]+3:"
119119
'
120120

121121
test_done

0 commit comments

Comments
 (0)