mercurial/changegroup.py
changeset 29806 82e8c86cdd6d
parent 29804 7b9157aa752f
child 29807 d4e026341e16
equal deleted inserted replaced
29805:f09d0004481c 29806:82e8c86cdd6d
   940     is non-trivial.
   940     is non-trivial.
   941 
   941 
   942     Another wrinkle is doing the reverse, figuring out which changeset in
   942     Another wrinkle is doing the reverse, figuring out which changeset in
   943     the changegroup a particular filenode or manifestnode belongs to.
   943     the changegroup a particular filenode or manifestnode belongs to.
   944     """
   944     """
   945     outgoing = discovery.outgoingbetween(repo, roots, heads)
   945     outgoing = discovery.outgoing(repo, missingroots=roots, missingheads=heads)
   946     bundler = getbundler(version, repo)
   946     bundler = getbundler(version, repo)
   947     return getsubset(repo, outgoing, bundler, source)
   947     return getsubset(repo, outgoing, bundler, source)
   948 
   948 
   949 def getlocalchangegroupraw(repo, source, outgoing, bundlecaps=None,
   949 def getlocalchangegroupraw(repo, source, outgoing, bundlecaps=None,
   950                            version='01'):
   950                            version='01'):