hgext/git/gitlog.py
changeset 51301 d91b55371d6f
parent 49386 1e12ea7d8435
child 51859 f4733654f144
equal deleted inserted replaced
51300:e5b710ce643a 51301:d91b55371d6f
   322         not supplied, uses all of the revlog's heads.  If common is not
   322         not supplied, uses all of the revlog's heads.  If common is not
   323         supplied, uses nullid."""
   323         supplied, uses nullid."""
   324         if common is None:
   324         if common is None:
   325             common = [sha1nodeconstants.nullid]
   325             common = [sha1nodeconstants.nullid]
   326         if heads is None:
   326         if heads is None:
   327             heads = self.heads()
   327             heads = [self.node(r) for r in self.headrevs()]
   328 
   328 
   329         common = [self.rev(n) for n in common]
   329         common = [self.rev(n) for n in common]
   330         heads = [self.rev(n) for n in heads]
   330         heads = [self.rev(n) for n in heads]
   331 
   331 
   332         inc = self.incrementalmissingrevs(common=common)
   332         inc = self.incrementalmissingrevs(common=common)