X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/26aab5b04fa4ba13f48948de73e497cf0a315ad1..e4fc1f59f679b4f0b5c6805feaf9da0df2cd370f:/stgit/commands/pop.py diff --git a/stgit/commands/pop.py b/stgit/commands/pop.py index 3da135c..645eebd 100644 --- a/stgit/commands/pop.py +++ b/stgit/commands/pop.py @@ -24,60 +24,61 @@ from stgit.utils import * from stgit import stack, git -help = 'pop the top of the series' -usage = """%prog [options] +help = 'pop one or more patches from the stack' +usage = """%prog [options] [] Pop the topmost patch or a range of patches starting with the topmost one from the stack. The command fails if there are local changes or -conflicts.""" +conflicts. If a patch name is given as argument, the command will pop +all the patches up to the given one.""" options = [make_option('-a', '--all', help = 'pop all the applied patches', action = 'store_true'), make_option('-n', '--number', type = 'int', help = 'pop the specified number of patches'), - make_option('-t', '--to', metavar = 'PATCH', - help = 'pop all patches up to PATCH')] + make_option('-k', '--keep', + help = 'keep the local changes', + action = 'store_true')] def func(parser, options, args): """Pop the topmost patch from the stack """ - if len(args) != 0: + if len(args) > 1: parser.error('incorrect number of arguments') - check_local_changes() check_conflicts() check_head_top_equal() + if not options.keep: + check_local_changes() + applied = crt_series.get_applied() if not applied: raise CmdException, 'No patches applied' + # the popping is done in reverse order applied.reverse() - if options.to: - if options.to not in applied: - raise CmdException, 'Patch "%s" not applied' % options.to - patches = applied[:applied.index(options.to)] + if options.all: + patches = applied elif options.number: patches = applied[:options.number] - elif options.all: - patches = applied + elif len(args) == 1: + upto_patch = args[0] + if upto_patch not in applied: + if upto_patch in crt_series.get_unapplied(): + raise CmdException, 'Patch "%s" is not currently applied' \ + % upto_patch + else: + raise CmdException, 'Patch "%s" does not exist' % upto_patch + patches = applied[:applied.index(upto_patch)] else: patches = [applied[0]] if patches == []: raise CmdException, 'No patches to pop' - # pop everything to the given patch - p = patches[-1] - if len(patches) == 1: - print 'Popping patch "%s"...' % p, - else: - print 'Popping "%s" - "%s" patches...' % (patches[0], p), - sys.stdout.flush() - - crt_series.pop_patch(p) + pop_patches(patches, options.keep) - print 'done' print_crt_patch()