~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to command_classes.py

  • Committer: Aaron Bentley
  • Date: 2008-11-05 14:02:52 UTC
  • mfrom: (676.1.3 bzrtools-1.9)
  • Revision ID: aaron@aaronbentley.com-20081105140252-aem9ee88p7m33ceg
Merge with bzrtools-1.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
from command import BzrToolsCommand
44
44
 
45
 
bzrlib.ignores.add_runtime_ignores(['./.shelf'])
46
 
 
47
45
 
48
46
class cmd_clean_tree(BzrToolsCommand):
49
47
    """Remove unwanted files from working tree.
588
586
                source_tree.unlock()
589
587
        finally:
590
588
            target_tree.unlock()
591
 
 
592
 
from heads import cmd_heads
593
 
commands = [
594
 
            cmd_branches,
595
 
            cmd_branch_history,
596
 
            cmd_cbranch,
597
 
            cmd_cdiff,
598
 
            cmd_clean_tree,
599
 
            cmd_fetch_ghosts,
600
 
            cmd_graph_ancestry,
601
 
            cmd_heads,
602
 
            cmd_import,
603
 
            cmd_link_tree,
604
 
            cmd_multi_pull,
605
 
            cmd_patch,
606
 
            cmd_rspush,
607
 
            cmd_shelf,
608
 
            cmd_shell,
609
 
            cmd_shelve1,
610
 
            cmd_trees,
611
 
            cmd_unshelve1,
612
 
            cmd_zap,
613
 
            ]
614