chiark / gitweb /
Add my release scripts to the contrib directory
[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 """
1fa161d6
YD
53 policy = config.get('branch.%s.stgit.pull-policy' % crt_series.get_branch()) 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')
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
3b3c26fa
YD
80 if policy == 'pull':
81 must_rebase = 0
82 elif policy == 'fetch-rebase':
83 must_rebase = 1
84 elif policy == 'rebase':
85 must_rebase = 1
86 else:
5a6d315e 87 raise GitConfigException, 'Unsupported pull-policy "%s"' % policy
3b3c26fa 88
e5834af7 89 applied = prepare_rebase(real_rebase=must_rebase, force=options.force)
ddbbfd84
CM
90
91 # pull the remote changes
3b3c26fa 92 if policy == 'pull':
27ac2b7e 93 out.info('Pulling from "%s"' % repository)
3b3c26fa
YD
94 git.pull(repository)
95 elif policy == 'fetch-rebase':
27ac2b7e 96 out.info('Fetching from "%s"' % repository)
3b3c26fa 97 git.fetch(repository)
a9f3a9fc 98 rebase(git.fetch_head())
3b3c26fa
YD
99 elif policy == 'rebase':
100 rebase(crt_series.get_parent_branch())
a9f3a9fc
YD
101
102 post_rebase(applied, options.nopush, options.merged)
f338c3c0 103
925ff4a7 104 # maybe tidy up
c73e63b7 105 if config.get('stgit.keepoptimized') == 'yes':
925ff4a7
CL
106 git.repack()
107
f338c3c0 108 print_crt_patch()