##// END OF EJS Templates
bookmarks: allow pushing active bookmark on new remote head (issue5236)...
bookmarks: allow pushing active bookmark on new remote head (issue5236) Before 'hg push -B .' on new remote head complained with: abort: push creates new remote head ... It was because _nowarnheads was not expanding active bookmark name, so it didn't add active bookmark "proper" name to no warn heads list.

File last commit:

r28783:d9179856 default
r29229:89bba2be stable
Show More
test-revlog.t
15 lines | 653 B | text/troff | Tads3Lexer
Matt Mackall
parsers: fix list sizing rounding error (SEC)...
r28656 Test for CVE-2016-3630
$ hg init
>>> open("a.i", "w").write(
... """eJxjYGZgZIAAYQYGxhgom+k/FMx8YKx9ZUaKSOyqo4cnuKb8mbqHV5cBCVTMWb1Cwqkhe4Gsg9AD
... Joa3dYtcYYYBAQ8Qr4OqZAYRICPTSr5WKd/42rV36d+8/VmrNpv7NP1jQAXrQE4BqQUARngwVA=="""
... .decode("base64").decode("zlib"))
$ hg debugindex a.i
rev offset length delta linkrev nodeid p1 p2
0 0 19 -1 2 99e0332bd498 000000000000 000000000000
1 19 12 0 3 6674f57a23d8 99e0332bd498 000000000000
timeless
mpatch: unify mpatchError (issue5182)...
r28782 $ hg debugdata a.i 1 2>&1 | egrep 'Error:.*decoded'
Maciej Fijalkowski
pypy: fix overeager pattern matching on mpatchError...
r28783 (mercurial.mpatch.)?mpatchError: patch cannot be decoded (re)