/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 bzrlib/builtins.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-08-15 05:56:03 UTC
  • mfrom: (1551.17.6 Aaron's mergeable stuff)
  • Revision ID: pqm@pqm.ubuntu.com-20070815055603-t0fwzxv6if6sr7c6
pull -v no longer shows deltas, just logs

Show diffs side-by-side

added added

removed removed

Lines of Context:
568
568
    """
569
569
 
570
570
    _see_also = ['push', 'update', 'status-flags']
571
 
    takes_options = ['remember', 'overwrite', 'revision', 'verbose',
 
571
    takes_options = ['remember', 'overwrite', 'revision',
 
572
        Option('verbose', short_name='v',
 
573
            help='Show logs of pulled revisions.'),
572
574
        Option('directory',
573
575
            help='Branch to pull into, '
574
576
                 'rather than the one containing the working directory.',
640
642
 
641
643
        result.report(self.outf)
642
644
        if verbose:
643
 
            from bzrlib.log import show_changed_revisions
644
645
            new_rh = branch_to.revision_history()
645
 
            show_changed_revisions(branch_to, old_rh, new_rh,
646
 
                                   to_file=self.outf)
 
646
            log.show_changed_revisions(branch_to, old_rh, new_rh,
 
647
                                       to_file=self.outf)
647
648
 
648
649
 
649
650
class cmd_push(Command):