748
748
def push_stores(self, branch_to):
749
749
"""See Branch.push_stores."""
752
752
from bzrlib.fetch import greedy_fetch
754
754
self, self._branch_format, branch_to, branch_to._branch_format)
755
755
greedy_fetch(to_branch=branch_to, from_branch=self,
756
756
revision=self.last_revision())
759
760
store_pairs = ((self.text_store, branch_to.text_store),
760
761
(self.inventory_store, branch_to.inventory_store),
761
762
(self.revision_store, branch_to.revision_store))