Skip to content
Snippets Groups Projects
Commit 517cf1b5 authored by Siddharth Agarwal's avatar Siddharth Agarwal
Browse files

overlaychangectx: return nullrev if commit has no parents

In Mercurial, every commit has at least one parent -- root commits have the
null revision as their parent. In Git, root commits don't have any parents.
This difference needs to be papered over in hg-git for 'hg incoming' to work in
Mercurial 3.4+.

Note that this doesn't fix all the broken tests in default -- I haven't had
time to investigate the others.
parent da01212c
No related branches found
No related tags found
No related merge requests found
......@@ -190,7 +190,10 @@
return self.commit.message
def parents(self):
return [overlaychangectx(self.repo, sha) for sha in self.commit.parents]
parents = self.commit.parents
if not parents:
return [self.repo['null']]
return [overlaychangectx(self.repo, sha) for sha in parents]
def manifestnode(self):
return bin(self.commit.tree)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment