mercurial/changegroup.py
changeset 45144 c93dd9d9f1e6
parent 44452 9d2b2df2c2ba
child 45371 e58e234096de
equal deleted inserted replaced
45143:5631b0116374 45144:c93dd9d9f1e6
  1627     bundler = getbundler(version, repo, bundlecaps=bundlecaps, matcher=matcher)
  1627     bundler = getbundler(version, repo, bundlecaps=bundlecaps, matcher=matcher)
  1628 
  1628 
  1629     repo = repo.unfiltered()
  1629     repo = repo.unfiltered()
  1630     commonrevs = outgoing.common
  1630     commonrevs = outgoing.common
  1631     csets = outgoing.missing
  1631     csets = outgoing.missing
  1632     heads = outgoing.missingheads
  1632     heads = outgoing.ancestorsof
  1633     # We go through the fast path if we get told to, or if all (unfiltered
  1633     # We go through the fast path if we get told to, or if all (unfiltered
  1634     # heads have been requested (since we then know there all linkrevs will
  1634     # heads have been requested (since we then know there all linkrevs will
  1635     # be pulled by the client).
  1635     # be pulled by the client).
  1636     heads.sort()
  1636     heads.sort()
  1637     fastpathlinkrev = fastpath or (
  1637     fastpathlinkrev = fastpath or (