Refuse to pull/rebase when rendered unsafe by (un)commits.
[stgit] / stgit / commands / pull.py
CommitLineData
f338c3c0
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
25
26help = 'pull the changes from the remote repository'
8f5da35b 27usage = """%prog [options] [<repository>]
26aab5b0 28
d060dfd3
YD
29Pull the latest changes from the given remote repository (defaulting
30to branch.<name>.remote, or 'origin' if not set). This command works
31by popping all the patches from the stack, pulling the changes in the
32parent repository, setting the base of the stack to the latest parent
33HEAD and pushing the patches back (unless '--nopush' is specified).
34The 'push' operation can fail if there are conflicts. They need to be
35resolved and the patch pushed again.
26aab5b0 36
d060dfd3 37Check the 'git fetch' documentation for the <repository> format."""
f338c3c0
CM
38
39options = [make_option('-n', '--nopush',
40 help = 'do not push the patches back after pulling',
1777d8cd
CM
41 action = 'store_true'),
42 make_option('-m', '--merged',
43 help = 'check for patches merged upstream',
e5834af7
YD
44 action = 'store_true'),
45 make_option('--force',
46 help = 'force rebase even if the stack based was moved by (un)commits',
1f5e9148 47 action = 'store_true')]
f338c3c0
CM
48
49def func(parser, options, args):
50 """Pull the changes from a remote repository
51 """
8f5da35b 52 if len(args) > 1:
f338c3c0
CM
53 parser.error('incorrect number of arguments')
54
1f5e9148
CM
55 if len(args) >= 1:
56 repository = args[0]
87c69539 57 else:
254d99f8 58 repository = crt_series.get_parent_remote()
87c69539 59
0b4b9499
CL
60 if crt_series.get_protected():
61 raise CmdException, 'This branch is protected. Pulls are not permitted'
62
f338c3c0
CM
63 check_local_changes()
64 check_conflicts()
65 check_head_top_equal()
66
e5834af7
YD
67 must_rebase = (config.get('stgit.pull-does-rebase') == 'yes')
68 applied = prepare_rebase(real_rebase=must_rebase, force=options.force)
ddbbfd84
CM
69
70 # pull the remote changes
1f5e9148 71 print 'Pulling from "%s"...' % repository
d060dfd3 72 git.fetch(repository)
e5834af7 73 if must_rebase:
a9f3a9fc
YD
74 rebase(git.fetch_head())
75
76 post_rebase(applied, options.nopush, options.merged)
f338c3c0 77
925ff4a7 78 # maybe tidy up
c73e63b7 79 if config.get('stgit.keepoptimized') == 'yes':
925ff4a7
CL
80 git.repack()
81
f338c3c0 82 print_crt_patch()