35
35
takes_args = ['file?']
37
37
takes_options = [commands.Option('sync-snapshots',
38
help='Snapshots follow source'),
38
help='Snapshots follow source.'),
39
39
commands.Option('snapshot-interval', type=int,
40
help='take snapshots every x revisions'),
40
help='Take snapshots every x revisions.'),
41
41
commands.Option('outfile', type=unicode,
42
help='Write pseudo-knit to this file'),
43
commands.Option('memory', help='Use memory, not disk'),
44
commands.Option('extract', help='test extract time'),
45
commands.Option('single', help='use a single parent'),
46
commands.Option('verify', help='verify added texts'),
47
commands.Option('cache', help='Aggresively cache'),
48
commands.Option('size', help='Aggressive size'),
49
commands.Option('build', help='Aggressive build'),
42
help='Write pseudo-knit to this file.'),
43
commands.Option('memory', help='Use memory, not disk.'),
44
commands.Option('extract', help='Test extract time.'),
45
commands.Option('single', help='Use a single parent.'),
46
commands.Option('verify', help='Verify added texts.'),
47
commands.Option('cache', help='Aggresively cache.'),
48
commands.Option('size', help='Aggressive size.'),
49
commands.Option('build', help='Aggressive build.'),
123
123
takes_options = [
124
commands.Option('lsprof-timed', help='Use lsprof'),
125
commands.Option('parallel', help='extract multiple versions at once'),
126
commands.Option('count', help='Number of cycles to do', type=int),
124
commands.Option('lsprof-timed', help='Use lsprof.'),
125
commands.Option('parallel', help='Extract multiple versions at once.'),
126
commands.Option('count', help='Number of cycles to do.', type=int),
129
129
takes_args = ['filename', 'vfile?']