/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/git/workingtree.py

  • Committer: Jelmer Vernooij
  • Date: 2020-02-18 03:11:01 UTC
  • mto: (7490.3.4 work)
  • mto: This revision was merged to the branch mainline in revision 7495.
  • Revision ID: jelmer@jelmer.uk-20200218031101-trloo2n5k2n01q9r
Plumb through tag_selector.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1213
1213
 
1214
1214
    def pull(self, source, overwrite=False, stop_revision=None,
1215
1215
             change_reporter=None, possible_transports=None, local=False,
1216
 
             show_base=False):
 
1216
             show_base=False, tag_selector=None):
1217
1217
        with self.lock_write(), source.lock_read():
1218
1218
            old_revision = self.branch.last_revision()
1219
1219
            count = self.branch.pull(source, overwrite, stop_revision,
1220
1220
                                     possible_transports=possible_transports,
1221
 
                                     local=local)
 
1221
                                     local=local, tag_selector=tag_selector)
1222
1222
            self._update_git_tree(
1223
1223
                old_revision=old_revision,
1224
1224
                new_revision=self.branch.last_revision(),