Slightly modify the "publish" command description
[stgit] / stgit / commands / pick.py
1 __copyright__ = """
2 Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
3
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.
7
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.
12
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
16 """
17
18 import sys, os
19 from stgit.argparse import opt
20 from stgit.commands.common import *
21 from stgit.utils import *
22 from stgit.out import *
23 from stgit import argparse, stack, git
24 from stgit.stack import Series
25
26 help = 'Import a patch from a different branch or a commit object'
27 kind = 'patch'
28 usage = ['[options] ([<patch1>] [<patch2>] [<patch3>..<patch4>])|<commit>']
29 description = """
30 Import one or more patches from a different branch or a commit object
31 into the current series. By default, the name of the imported patch is
32 used as the name of the current patch. It can be overridden with the
33 '--name' option. A commit object can be reverted with the '--revert'
34 option. The log and author information are those of the commit
35 object."""
36
37 args = [argparse.patch_range(argparse.applied_patches,
38 argparse.unapplied_patches,
39 argparse.hidden_patches)]
40 options = [
41 opt('-n', '--name',
42 short = 'Use NAME as the patch name'),
43 opt('-B', '--ref-branch', args = [argparse.stg_branches],
44 short = 'Pick patches from BRANCH'),
45 opt('-r', '--revert', action = 'store_true',
46 short = 'Revert the given commit object'),
47 opt('-p', '--parent', metavar = 'COMMITID', args = [argparse.commit],
48 short = 'Use COMMITID as parent'),
49 opt('-x', '--expose', action = 'store_true',
50 short = 'Append the imported commit id to the patch log'),
51 opt('--fold', action = 'store_true',
52 short = 'Fold the commit object into the current patch'),
53 opt('--update', action = 'store_true',
54 short = 'Like fold but only update the current patch files'),
55 opt('-f', '--file', action = 'append',
56 short = 'Only fold the given file (can be used multiple times)'),
57 opt('--unapplied', action = 'store_true',
58 short = 'Keep the patch unapplied')]
59
60 directory = DirectoryGotoToplevel(log = True)
61
62 def __pick_commit(commit_id, patchname, options):
63 """Pick a commit id.
64 """
65 commit = git.Commit(commit_id)
66
67 if options.name:
68 patchname = options.name
69 elif patchname and options.revert:
70 patchname = 'revert-' + patchname
71 if patchname:
72 patchname = find_patch_name(patchname, crt_series.patch_exists)
73
74 if options.parent:
75 parent = git_id(crt_series, options.parent)
76 else:
77 parent = commit.get_parent()
78
79 if not options.revert:
80 bottom = parent
81 top = commit_id
82 else:
83 bottom = commit_id
84 top = parent
85
86 if options.fold:
87 out.start('Folding commit %s' % commit_id)
88
89 # try a direct git apply first
90 if not git.apply_diff(bottom, top, files = options.file):
91 if options.file:
92 raise CmdException('Patch folding failed')
93 else:
94 git.merge_recursive(bottom, git.get_head(), top)
95
96 out.done()
97 elif options.update:
98 rev1 = git_id(crt_series, 'HEAD^')
99 rev2 = git_id(crt_series, 'HEAD')
100 files = git.barefiles(rev1, rev2).split('\n')
101
102 out.start('Updating with commit %s' % commit_id)
103
104 if not git.apply_diff(bottom, top, files = files):
105 raise CmdException, 'Patch updating failed'
106
107 out.done()
108 else:
109 message = commit.get_log()
110 if options.revert:
111 if message:
112 subject = message.splitlines()[0]
113 else:
114 subject = commit.get_id_hash()
115 message = 'Revert "%s"\n\nThis reverts commit %s.\n' \
116 % (subject, commit.get_id_hash())
117 elif options.expose:
118 message += '(imported from commit %s)\n' % commit.get_id_hash()
119 author_name, author_email, author_date = \
120 name_email_date(commit.get_author())
121
122 out.start('Importing commit %s' % commit_id)
123
124 newpatch = crt_series.new_patch(patchname, message = message, can_edit = False,
125 unapplied = True, bottom = bottom, top = top,
126 author_name = author_name,
127 author_email = author_email,
128 author_date = author_date)
129 # in case the patch name was automatically generated
130 patchname = newpatch.get_name()
131
132 # find a patchlog to fork from
133 refbranchname, refpatchname = parse_rev(patchname)
134 if refpatchname:
135 if refbranchname:
136 # assume the refseries is OK, since we already resolved
137 # commit_str to a git_id
138 refseries = Series(refbranchname)
139 else:
140 refseries = crt_series
141 patch = refseries.get_patch(refpatchname)
142 if patch.get_log():
143 out.info("Log was %s" % newpatch.get_log())
144 out.info("Setting log to %s\n" % patch.get_log())
145 newpatch.set_log(patch.get_log())
146 out.info("Log is now %s" % newpatch.get_log())
147 else:
148 out.info("No log for %s\n" % patchname)
149
150 if not options.unapplied:
151 modified = crt_series.push_patch(patchname)
152 else:
153 modified = False
154
155 if crt_series.empty_patch(patchname):
156 out.done('empty patch')
157 elif modified:
158 out.done('modified')
159 else:
160 out.done()
161
162
163 def func(parser, options, args):
164 """Import a commit object as a new patch
165 """
166 if not args:
167 parser.error('incorrect number of arguments')
168
169 if options.file and not options.fold:
170 parser.error('--file can only be specified with --fold')
171
172 if not options.unapplied:
173 check_local_changes()
174 check_conflicts()
175 check_head_top_equal(crt_series)
176
177 if options.ref_branch:
178 remote_series = Series(options.ref_branch)
179 else:
180 remote_series = crt_series
181
182 applied = remote_series.get_applied()
183 unapplied = remote_series.get_unapplied()
184 try:
185 patches = parse_patches(args, applied + unapplied, len(applied))
186 commit_id = None
187 except CmdException:
188 if len(args) > 1:
189 raise
190 # no patches found, try a commit id
191 commit_id = git_id(remote_series, args[0])
192
193 if not commit_id and len(patches) > 1:
194 if options.name:
195 raise CmdException, '--name can only be specified with one patch'
196 if options.parent:
197 raise CmdException, '--parent can only be specified with one patch'
198
199 if options.update and not crt_series.get_current():
200 raise CmdException, 'No patches applied'
201
202 if commit_id:
203 # Try to guess a patch name if the argument was <branch>:<patch>
204 try:
205 patchname = args[0].split(':')[1]
206 except IndexError:
207 patchname = None
208 __pick_commit(commit_id, patchname, options)
209 else:
210 if options.unapplied:
211 patches.reverse()
212 for patch in patches:
213 __pick_commit(git_id(remote_series, patch), patch, options)
214
215 print_crt_patch(crt_series)