~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Aaron Bentley
  • Date: 2007-08-14 20:19:46 UTC
  • Revision ID: abentley@panoramicfeedback.com-20070814201946-0sakbyeb2zb533uf
Remove branch-mark command

Show diffs side-by-side

added added

removed removed

Lines of Context:
491
491
                print e
492
492
 
493
493
 
494
 
class cmd_branch_mark(BzrToolsCommand):
495
 
    """
496
 
    Add, view or list branch markers <EXPERIMENTAL>
497
 
 
498
 
    To add a mark, do 'bzr branch-mark MARK'.
499
 
    To list marks, do 'bzr branch-mark' (this lists all marks for the branch's
500
 
    repository).
501
 
    To delete a mark, do 'bzr branch-mark --delete MARK'
502
 
 
503
 
    These marks can be used to track a branch's status.
504
 
    """
505
 
    takes_args = ['mark?', 'branch?']
506
 
    takes_options = [Option('delete', help='Delete this mark.')]
507
 
    def run(self, mark=None, branch=None, delete=False):
508
 
        from branch_mark import branch_mark
509
 
        branch_mark(mark, branch, delete)
510
 
 
511
 
 
512
494
class cmd_import(BzrToolsCommand):
513
495
    """Import sources from a directory, tarball or zip file
514
496
 
651
633
            cmd_baz_import_branch,
652
634
            cmd_branches,
653
635
            cmd_branch_history,
654
 
            cmd_branch_mark,
655
636
            cmd_cbranch,
656
637
            cmd_cdiff,
657
638
            cmd_clean_tree,