chiark / gitweb /
Use get/set_name for a stack's name.
[stgit] / stgit / commands / pull.py
... / ...
CommitLineData
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.config import GitConfigException
24from stgit import stack, git
25
26
27help = 'pull the changes from the remote repository'
28usage = """%prog [options] [<repository>]
29
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.
37
38Check the 'git fetch' documentation for the <repository> format."""
39
40options = [make_option('-n', '--nopush',
41 help = 'do not push the patches back after pulling',
42 action = 'store_true'),
43 make_option('-m', '--merged',
44 help = 'check for patches merged upstream',
45 action = 'store_true'),
46 make_option('--force',
47 help = 'force rebase even if the stack based was moved by (un)commits',
48 action = 'store_true')]
49
50def func(parser, options, args):
51 """Pull the changes from a remote repository
52 """
53 policy = config.get('branch.%s.stgit.pull-policy' % crt_series.get_name()) or \
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')
62
63 else:
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()
72
73 if crt_series.get_protected():
74 raise CmdException, 'This branch is protected. Pulls are not permitted'
75
76 check_local_changes()
77 check_conflicts()
78 check_head_top_equal()
79
80 if (policy != 'pull') \
81 and (policy != 'fetch-rebase') \
82 and (policy != 'rebase'):
83 raise GitConfigException, 'Unsupported pull-policy "%s"' % policy
84
85 applied = prepare_rebase(force=options.force)
86
87 # pull the remote changes
88 if policy == 'pull':
89 out.info('Pulling from "%s"' % repository)
90 git.pull(repository)
91 elif policy == 'fetch-rebase':
92 out.info('Fetching from "%s"' % repository)
93 git.fetch(repository)
94 rebase(git.fetch_head())
95 elif policy == 'rebase':
96 rebase(crt_series.get_parent_branch())
97
98 post_rebase(applied, options.nopush, options.merged)
99
100 # maybe tidy up
101 if config.get('stgit.keepoptimized') == 'yes':
102 git.repack()
103
104 print_crt_patch()