Check git pull remote before defaulting to 'origin'
[stgit] / stgit / commands / commit.py
CommitLineData
6a093bbb
CM
1__copyright__ = """
2Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
3
4This program is free software; you can redistribute it and/or modify
5it under the terms of the GNU General Public License version 2 as
6published by the Free Software Foundation.
7
8This program is distributed in the hope that it will be useful,
9but WITHOUT ANY WARRANTY; without even the implied warranty of
10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11GNU General Public License for more details.
12
13You should have received a copy of the GNU General Public License
14along with this program; if not, write to the Free Software
15Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16"""
17
18import sys, os
19from optparse import OptionParser, make_option
20
21from stgit.commands.common import *
22from stgit.utils import *
23from stgit import stack, git
24
25help = 'permanently store the applied patches into stack base'
26usage = """%prog [options]
27
28Merge the applied patches into the base of the current stack and
29remove them from the series while advancing the base.
30
31Use this command only if you want to permanently store the applied
32patches and no longer manage them with StGIT."""
33
34options = []
35
36
37def func(parser, options, args):
38 """Merge the applied patches into the base of the current stack
39 and remove them from the series while advancing the base
40 """
41 if len(args) != 0:
42 parser.error('incorrect number of arguments')
43
44 check_local_changes()
45 check_conflicts()
46 check_head_top_equal()
47
48 applied = crt_series.get_applied()
49 if not applied:
50 raise CmdException, 'No patches applied'
51
0b4b9499
CL
52 if crt_series.get_protected():
53 raise CmdException, 'This branch is protected. Commit is not permitted'
54
6a093bbb
CM
55 crt_head = git.get_head()
56
57 print 'Committing %d patches...' % len(applied),
0dd3d1af 58 sys.stdout.flush()
6a093bbb
CM
59
60 crt_series.pop_patch(applied[0])
61 git.switch(crt_head)
62
63 for patch in applied:
64 crt_series.delete_patch(patch)
65
66 print 'done'