X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/514dd4f2a4bc2cb0fb2e160f254804361486f3df..841c7b2a6b015e3ab3331713cf10caf7a4fd0b49:/stgit/main.py diff --git a/stgit/main.py b/stgit/main.py index 99e0832..8694acd 100644 --- a/stgit/main.py +++ b/stgit/main.py @@ -69,6 +69,7 @@ commands = Commands({ 'float': 'float', 'fold': 'fold', 'goto': 'goto', + 'hide': 'hide', 'id': 'id', 'import': 'imprt', 'init': 'init', @@ -80,6 +81,7 @@ commands = Commands({ 'pop': 'pop', 'pull': 'pull', 'push': 'push', + 'rebase': 'rebase', 'refresh': 'refresh', 'rename': 'rename', 'resolved': 'resolved', @@ -90,7 +92,8 @@ commands = Commands({ 'sync': 'sync', 'top': 'top', 'unapplied': 'unapplied', - 'uncommit': 'uncommit' + 'uncommit': 'uncommit', + 'unhide': 'unhide' }) # classification: repository, stack, patch, working copy @@ -107,13 +110,16 @@ stackcommands = ( 'commit', 'float', 'goto', + 'hide', 'init', 'pop', 'push', + 'rebase', 'series', 'top', 'unapplied', - 'uncommit' + 'uncommit', + 'unhide' ) patchcommands = ( 'delete',