Auto-generate man pages for all StGit commands
[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 stgit.argparse import opt
20from stgit.commands.common import *
21from stgit.utils import *
22from stgit.out import *
23from stgit.config import GitConfigException
24from stgit import stack, git
25
26help = 'Pull changes from a remote repository'
27usage = ['[options] [<repository>]']
28description = """
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.
36
37Check the 'git fetch' documentation for the <repository> format."""
38
39options = [
40 opt('-n', '--nopush', action = 'store_true',
41 short = 'Do not push the patches back after pulling'),
42 opt('-m', '--merged', action = 'store_true',
43 short = 'Check for patches merged upstream')]
44
45directory = DirectoryGotoToplevel()
46
47def func(parser, options, args):
48 """Pull the changes from a remote repository
49 """
50 policy = config.get('branch.%s.stgit.pull-policy' % crt_series.get_name()) or \
51 config.get('stgit.pull-policy')
52
53 if policy == 'rebase':
54 # parent is local
55 if len(args) == 1:
56 parser.error('specifying a repository is meaningless for policy="%s"' % policy)
57 if len(args) > 0:
58 parser.error('incorrect number of arguments')
59
60 else:
61 # parent is remote
62 if len(args) > 1:
63 parser.error('incorrect number of arguments')
64
65 if len(args) >= 1:
66 repository = args[0]
67 else:
68 repository = crt_series.get_parent_remote()
69
70 if crt_series.get_protected():
71 raise CmdException, 'This branch is protected. Pulls are not permitted'
72
73 check_local_changes()
74 check_conflicts()
75 check_head_top_equal(crt_series)
76
77 if policy not in ['pull', 'fetch-rebase', 'rebase']:
78 raise GitConfigException, 'Unsupported pull-policy "%s"' % policy
79
80 applied = prepare_rebase(crt_series)
81
82 # pull the remote changes
83 if policy == 'pull':
84 out.info('Pulling from "%s"' % repository)
85 git.pull(repository)
86 elif policy == 'fetch-rebase':
87 out.info('Fetching from "%s"' % repository)
88 git.fetch(repository)
89 try:
90 target = git.fetch_head()
91 except git.GitException:
92 out.error('Could not find the remote head to rebase onto - fix branch.%s.merge in .git/config' % crt_series.get_name())
93 out.error('Pushing any patches back...')
94 post_rebase(crt_series, applied, False, False)
95 raise
96
97 rebase(crt_series, target)
98 elif policy == 'rebase':
99 rebase(crt_series, crt_series.get_parent_branch())
100
101 post_rebase(crt_series, applied, options.nopush, options.merged)
102
103 # maybe tidy up
104 if config.get('stgit.keepoptimized') == 'yes':
105 git.repack()
106
107 print_crt_patch(crt_series)