~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to __init__.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:
18
18
Various useful commands for working with bzr.
19
19
"""
20
20
 
 
21
from bzrlib import ignores
21
22
from bzrlib.commands import plugin_cmds
22
23
from version import version_info, __version__
23
24
 
24
25
 
 
26
ignores.add_runtime_ignores(['./.shelf'])
 
27
 
 
28
 
25
29
commands = {
26
30
    'cmd_branches': [],
27
31
    'cmd_branch_history': [],
30
34
    'cmd_clean_tree': [],
31
35
    'cmd_fetch_ghosts': ['fetch-missing'],
32
36
    'cmd_graph_ancestry': [],
33
 
    'cmd_heads': [],
34
37
    'cmd_import': [],
35
38
    'cmd_link_tree': [],
36
39
    'cmd_multi_pull': [],
49
52
    plugin_cmds.register_lazy(cmd_name, aliases,
50
53
                              'bzrlib.plugins.bzrtools.command_classes')
51
54
 
 
55
plugin_cmds.register_lazy('cmd_heads', [], 'bzrlib.plugins.bzrtools.heads')
52
56
 
53
57
def test_suite():
54
58
    from bzrlib.tests.TestUtil import TestLoader