New refresh tests
[stgit] / stgit / commands / rebase.py
CommitLineData
22037590
YD
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
575bbdae 19from stgit.argparse import opt
22037590
YD
20from stgit.commands.common import *
21from stgit.utils import *
22from stgit import stack, git
23
575bbdae 24help = 'Move the stack base to another point in history'
33ff9cdd 25kind = 'stack'
575bbdae
KH
26usage = ['[options] <new-base-id>']
27description = """
22037590 28Pop all patches from current stack, move the stack base to the given
467a0a0e
AC
29<new-base-id> and push the patches back.
30
31If you experience merge conflicts, resolve the problem and continue
32the rebase by executing the following sequence:
33
34 $ stg resolved -a [-i]
35 $ stg refresh
36 $ stg goto top-patch
37
38Or if you want to skip that patch:
39
40 $ stg push --undo
41 $ stg push next-patch..top-patch"""
22037590 42
575bbdae
KH
43options = [
44 opt('-n', '--nopush', action = 'store_true',
45 short = 'Do not push the patches back after rebasing'),
46 opt('-m', '--merged', action = 'store_true',
47 short = 'Check for patches merged upstream')]
48
117ed129 49directory = DirectoryGotoToplevel(log = True)
22037590
YD
50
51def func(parser, options, args):
52 """Rebase the current stack
53 """
54 if len(args) != 1:
55 parser.error('incorrect number of arguments')
56
57 if crt_series.get_protected():
58 raise CmdException, 'This branch is protected. Rebase is not permitted'
59
60 check_local_changes()
61 check_conflicts()
6972fd6b 62 check_head_top_equal(crt_series)
22037590 63
ec6ed336 64 # ensure an exception is raised before popping on non-existent target
6972fd6b 65 if git_id(crt_series, args[0]) == None:
8ff4e9e0 66 raise GitException, 'Unknown revision: %s' % args[0]
ec6ed336 67
6972fd6b
KH
68 applied = prepare_rebase(crt_series)
69 rebase(crt_series, args[0])
70 post_rebase(crt_series, applied, options.nopush, options.merged)
22037590 71
6972fd6b 72 print_crt_patch(crt_series)