chiark / gitweb /
Implement an 'import' command
[stgit] / stgit / main.py
index e409dac8e103b087491e56b87c48446d683c8042..3fd11a1ef2741fe3b5bbd4209de76ee587e562c2 100644 (file)
@@ -35,6 +35,7 @@ import stgit.commands.diff
 import stgit.commands.clean
 import stgit.commands.export
 import stgit.commands.files
+import stgit.commands.imprt
 import stgit.commands.init
 import stgit.commands.mail
 import stgit.commands.new
@@ -42,6 +43,7 @@ import stgit.commands.pop
 import stgit.commands.pull
 import stgit.commands.push
 import stgit.commands.refresh
+import stgit.commands.rename
 import stgit.commands.resolved
 import stgit.commands.rm
 import stgit.commands.series
@@ -61,6 +63,7 @@ commands = {
     'clean':    stgit.commands.clean,
     'export':   stgit.commands.export,
     'files':    stgit.commands.files,
+    'import':   stgit.commands.imprt,
     'init':     stgit.commands.init,
     'mail':     stgit.commands.mail,
     'new':      stgit.commands.new,
@@ -68,6 +71,7 @@ commands = {
     'pull':     stgit.commands.pull,
     'push':     stgit.commands.push,
     'refresh':  stgit.commands.refresh,
+    'rename':   stgit.commands.rename,
     'resolved': stgit.commands.resolved,
     'rm':       stgit.commands.rm,
     'series':   stgit.commands.series,