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