chiark / gitweb /
Use get/set_name for a stack's name.
[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 *
5a6d315e 23from stgit.config import GitConfigException
f338c3c0
CM
24from stgit import stack, git
25
26
27help = 'pull the changes from the remote repository'
8f5da35b 28usage = """%prog [options] [<repository>]
26aab5b0 29
d060dfd3
YD
30Pull the latest changes from the given remote repository (defaulting
31to branch.<name>.remote, or 'origin' if not set). This command works
32by popping all the patches from the stack, pulling the changes in the
33parent repository, setting the base of the stack to the latest parent
34HEAD and pushing the patches back (unless '--nopush' is specified).
35The 'push' operation can fail if there are conflicts. They need to be
36resolved and the patch pushed again.
26aab5b0 37
d060dfd3 38Check the 'git fetch' documentation for the <repository> format."""
f338c3c0
CM
39
40options = [make_option('-n', '--nopush',
41 help = 'do not push the patches back after pulling',
1777d8cd
CM
42 action = 'store_true'),
43 make_option('-m', '--merged',
44 help = 'check for patches merged upstream',
e5834af7
YD
45 action = 'store_true'),
46 make_option('--force',
47 help = 'force rebase even if the stack based was moved by (un)commits',
1f5e9148 48 action = 'store_true')]
f338c3c0
CM
49
50def func(parser, options, args):
51 """Pull the changes from a remote repository
52 """
d37ff079 53 policy = config.get('branch.%s.stgit.pull-policy' % crt_series.get_name()) or \
1fa161d6
YD
54 config.get('stgit.pull-policy')
55
56 if policy == 'rebase':
57 # parent is local
58 if len(args) == 1:
59 parser.error('specifying a repository is meaningless for policy="%s"' % policy)
60 if len(args) > 0:
61 parser.error('incorrect number of arguments')
f338c3c0 62
87c69539 63 else:
1fa161d6
YD
64 # parent is remote
65 if len(args) > 1:
66 parser.error('incorrect number of arguments')
67
68 if len(args) >= 1:
69 repository = args[0]
70 else:
71 repository = crt_series.get_parent_remote()
87c69539 72
0b4b9499
CL
73 if crt_series.get_protected():
74 raise CmdException, 'This branch is protected. Pulls are not permitted'
75
f338c3c0
CM
76 check_local_changes()
77 check_conflicts()
78 check_head_top_equal()
79
bd69feaf
YD
80 if (policy != 'pull') \
81 and (policy != 'fetch-rebase') \
82 and (policy != 'rebase'):
5a6d315e 83 raise GitConfigException, 'Unsupported pull-policy "%s"' % policy
3b3c26fa 84
bd69feaf 85 applied = prepare_rebase(force=options.force)
ddbbfd84
CM
86
87 # pull the remote changes
3b3c26fa 88 if policy == 'pull':
27ac2b7e 89 out.info('Pulling from "%s"' % repository)
3b3c26fa
YD
90 git.pull(repository)
91 elif policy == 'fetch-rebase':
27ac2b7e 92 out.info('Fetching from "%s"' % repository)
3b3c26fa 93 git.fetch(repository)
a9f3a9fc 94 rebase(git.fetch_head())
3b3c26fa
YD
95 elif policy == 'rebase':
96 rebase(crt_series.get_parent_branch())
a9f3a9fc
YD
97
98 post_rebase(applied, options.nopush, options.merged)
f338c3c0 99
925ff4a7 100 # maybe tidy up
c73e63b7 101 if config.get('stgit.keepoptimized') == 'yes':
925ff4a7
CL
102 git.repack()
103
f338c3c0 104 print_crt_patch()