Set the .txt extension to the StGIT commit message file
[stgit] / stgit / commands / pop.py
CommitLineData
fcee87cf
CM
1
2__copyright__ = """
3Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
4
5This program is free software; you can redistribute it and/or modify
6it under the terms of the GNU General Public License version 2 as
7published by the Free Software Foundation.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program; if not, write to the Free Software
16Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17"""
18
19import sys, os
20from optparse import OptionParser, make_option
21
22from stgit.commands.common import *
23from stgit.utils import *
24from stgit import stack, git
25
26
27help = 'pop the top of the series'
26aab5b0
CM
28usage = """%prog [options]
29
30Pop the topmost patch or a range of patches starting with the topmost
31one from the stack. The command fails if there are local changes or
32conflicts."""
fcee87cf
CM
33
34options = [make_option('-a', '--all',
35 help = 'pop all the applied patches',
36 action = 'store_true'),
37 make_option('-n', '--number', type = 'int',
38 help = 'pop the specified number of patches'),
39 make_option('-t', '--to', metavar = 'PATCH',
40 help = 'pop all patches up to PATCH')]
41
42
43def func(parser, options, args):
44 """Pop the topmost patch from the stack
45 """
46 if len(args) != 0:
47 parser.error('incorrect number of arguments')
48
49 check_local_changes()
50 check_conflicts()
51 check_head_top_equal()
52
53 applied = crt_series.get_applied()
54 if not applied:
55 raise CmdException, 'No patches applied'
56 applied.reverse()
57
58 if options.to:
59 if options.to not in applied:
bca12bd1
CL
60 if options.to in crt_series.get_unapplied():
61 raise CmdException, 'Patch "%s" is not currently applied.' % options.to
62 else:
63 raise CmdException, 'Patch "%s" does not exist.' % options.to
fcee87cf
CM
64 patches = applied[:applied.index(options.to)]
65 elif options.number:
66 patches = applied[:options.number]
67 elif options.all:
68 patches = applied
69 else:
70 patches = [applied[0]]
71
72 if patches == []:
73 raise CmdException, 'No patches to pop'
74
994fdba7 75 pop_patches(patches)
fcee87cf 76
fcee87cf 77 print_crt_patch()