mercurial/localrepo.py
changeset 20567 de8eb208b7d0
parent 20556 db0740a487ab
child 20627 a42ea6d209e6
equal deleted inserted replaced
20566:98024950ade0 20567:de8eb208b7d0
  1879                           url=url, pending=p)
  1879                           url=url, pending=p)
  1880 
  1880 
  1881             added = [cl.node(r) for r in xrange(clstart, clend)]
  1881             added = [cl.node(r) for r in xrange(clstart, clend)]
  1882             publishing = self.ui.configbool('phases', 'publish', True)
  1882             publishing = self.ui.configbool('phases', 'publish', True)
  1883             if srctype == 'push':
  1883             if srctype == 'push':
  1884                 # Old server can not push the boundary themself.
  1884                 # Old servers can not push the boundary themselves.
  1885                 # New server won't push the boundary if changeset already
  1885                 # New servers won't push the boundary if changeset already
  1886                 # existed locally as secrete
  1886                 # exists locally as secret
  1887                 #
  1887                 #
  1888                 # We should not use added here but the list of all change in
  1888                 # We should not use added here but the list of all change in
  1889                 # the bundle
  1889                 # the bundle
  1890                 if publishing:
  1890                 if publishing:
  1891                     phases.advanceboundary(self, phases.public, srccontent)
  1891                     phases.advanceboundary(self, phases.public, srccontent)