# HG changeset patch # User Pierre-Yves David # Date 1306155717 -7200 # Node ID 9445ce78a9350f331ebbec6f3afcc7084a2e8a34 # Parent b4932dff9bd892814e6b2cab262b8c58ce4e53a9 fix clone diff -r b4932dff9bd8 -r 9445ce78a935 states.py --- a/states.py Mon May 23 14:25:22 2011 +0200 +++ b/states.py Mon May 23 15:01:57 2011 +0200 @@ -111,6 +111,7 @@ if not repo.local(): return + o_cancopy =repo.cancopy class statefulrepo(repo.__class__): def nodestate(self, node): @@ -184,5 +185,8 @@ selected.add(candidate) return sorted(selected) + def cancopy(self): + return o_cancopy() and (self._publicheads == self.heads()) + repo.__class__ = statefulrepo diff -r b4932dff9bd8 -r 9445ce78a935 tests/test-private.t --- a/tests/test-private.t Mon May 23 14:25:22 2011 +0200 +++ b/tests/test-private.t Mon May 23 15:01:57 2011 +0200 @@ -108,6 +108,11 @@ (run 'hg update' to get a working copy) $ cd .. $ hg clone local other2 + requesting all changes + adding changesets + adding manifests + adding file changes + added 2 changesets with 2 changes to 1 files updating to branch default 1 files updated, 0 files merged, 0 files removed, 0 files unresolved $ hg -R other2 log --template='{rev}:{node|short}\n'