##// END OF EJS Templates
subrepo: subrepo isolation, pass baseui when cloning a new subrepo (issue2904)...
Simon Heimberg -
r17876:f4ee2e95 stable
parent child Browse files
Show More
@@ -507,7 +507,7 b' class hgsubrepo(abstractsubrepo):'
507 % (subrelpath(self), srcurl))
507 % (subrelpath(self), srcurl))
508 parentrepo = self._repo._subparent
508 parentrepo = self._repo._subparent
509 shutil.rmtree(self._repo.path)
509 shutil.rmtree(self._repo.path)
510 other, cloned = hg.clone(self._repo._subparent.ui, {},
510 other, cloned = hg.clone(self._repo._subparent.baseui, {},
511 other, self._repo.root,
511 other, self._repo.root,
512 update=False)
512 update=False)
513 self._repo = cloned.local()
513 self._repo = cloned.local()
General Comments 0
You need to be logged in to leave comments. Login now