equal
deleted
inserted
replaced
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) |