Submitter | phabricator |
---|---|
Date | Nov. 23, 2019, 4:08 a.m. |
Message ID | <396a1a9d84a72da79fab548d7e969858@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/43462/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/tests/test-repo-filters-tiptoe.t b/tests/test-repo-filters-tiptoe.t --- a/tests/test-repo-filters-tiptoe.t +++ b/tests/test-repo-filters-tiptoe.t @@ -49,5 +49,4 @@ $ hg init test-repo $ cd test-repo $ hg log -r null -T "{node}\n" - debug.filters: computing revision filter for "visible" 0000000000000000000000000000000000000000 diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py --- a/mercurial/localrepo.py +++ b/mercurial/localrepo.py @@ -1652,6 +1652,8 @@ definitions overriding user aliases, set ``localalias`` to ``{name: definitionstring}``. ''' + if specs == [b'null']: + return revset.baseset([nullrev]) if user: m = revset.matchany( self.ui,