22
22
class cmd_shelve2(commands.Command):
23
23
"""Put some changes to the side for a while."""
27
29
commands.Option('all', help='Shelve all changes.')]
31
def run(self, revision=None, all=False, file_list=None):
30
32
from bzrlib.plugins.shelf2.shelf_ui import Shelver
33
36
class cmd_unshelve2(commands.Command):
34
37
"""Restore shelved changes."""