2 Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License version 2 as
6 published by the Free Software Foundation.
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
13 You should have received a copy of the GNU General Public License
14 along with this program; if not, write to the Free Software
15 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 from optparse import OptionParser, make_option
21 from stgit.commands.common import *
22 from stgit.utils import *
23 from stgit import stack, git
26 help = 'import a patch from a different branch or a commit object'
27 usage = """%prog [options] [<patch@branch>|<commit>]
29 Import a patch from a different branch or a commit object into the
30 current series. By default, the name of the imported patch is used as
31 the name of the current patch. It can be overridden with the '--name'
32 option. A commit object can be reverted with the '--reverse'
33 option. The log and author information are those of the commit object."""
35 options = [make_option('-n', '--name',
36 help = 'use NAME as the patch name'),
37 make_option('-r', '--reverse',
38 help = 'reverse the commit object before importing',
39 action = 'store_true'),
41 help = 'fold the commit object into the current patch',
42 action = 'store_true')]
45 def func(parser, options, args):
46 """Import a commit object as a new patch
49 parser.error('incorrect number of arguments')
53 check_head_top_equal()
58 if not crt_series.get_current():
59 raise CmdException, 'No patches applied'
61 patch_branch = commit_str.split('@')
64 elif len(patch_branch) == 2:
65 patch = patch_branch[0]
67 raise CmdException, 'Unknown patch name'
69 commit_id = git_id(commit_str)
70 commit = git.Commit(commit_id)
72 if not options.reverse:
73 bottom = commit.get_parent()
77 top = commit.get_parent()
80 print 'Folding commit %s...' % commit_id,
83 # try a direct git-apply first
84 if not git.apply_diff(bottom, top):
85 git.merge(bottom, git.get_head(), top)
89 message = commit.get_log()
90 author_name, author_email, author_date = \
91 name_email_date(commit.get_author())
93 print 'Importing commit %s...' % commit_id,
96 crt_series.new_patch(patch, message = message, can_edit = False,
97 unapplied = True, bottom = bottom, top = top,
98 author_name = author_name,
99 author_email = author_email,
100 author_date = author_date)
101 modified = crt_series.push_patch(patch)
103 if crt_series.empty_patch(patch):
104 print 'done (empty patch)'
106 print 'done (modified)'