X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/d96796efbad18a2b877002a9bd4fc667d856259f..051090dd538aa6c025a22ae896e2af1713e1522f:/stgit/main.py diff --git a/stgit/main.py b/stgit/main.py index e8242c2..a03447f 100644 --- a/stgit/main.py +++ b/stgit/main.py @@ -60,7 +60,6 @@ class Commands(dict): commands = Commands({ 'add': 'add', 'applied': 'applied', - 'assimilate': 'assimilate', 'branch': 'branch', 'delete': 'delete', 'diff': 'diff', @@ -89,6 +88,7 @@ commands = Commands({ 'rebase': 'rebase', 'refresh': 'refresh', 'rename': 'rename', + 'repair': 'repair', 'resolved': 'resolved', 'rm': 'rm', 'series': 'series', @@ -109,7 +109,6 @@ repocommands = ( ) stackcommands = ( 'applied', - 'assimilate', 'branch', 'clean', 'commit', @@ -122,6 +121,7 @@ stackcommands = ( 'pull', 'push', 'rebase', + 'repair', 'series', 'sink', 'top',