Rudimentary support for multiple development branches
[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'
1f5e9148 27usage = """%prog [options] [<repository>] [<refspec>]
26aab5b0 28
1f5e9148 29Pull the latest changes from the given repository (defaulting to
3899a8e2
CM
30'origin'). This command works by popping all the patches from the
31stack, pulling the changes in the parent repository, setting the base
32of the stack to the latest parent HEAD and pusing the patches back
33(unless '--nopush' is specified). The 'push' operation can fail if
34there are conflicts. They need to be resolved and the patch pushed
35again.
26aab5b0 36
1f5e9148
CM
37Check the 'git pull' documentation for the <repository> and <refspec>
38format."""
f338c3c0
CM
39
40options = [make_option('-n', '--nopush',
41 help = 'do not push the patches back after pulling',
1f5e9148 42 action = 'store_true')]
f338c3c0
CM
43
44def func(parser, options, args):
45 """Pull the changes from a remote repository
46 """
1f5e9148 47 if len(args) > 2:
f338c3c0
CM
48 parser.error('incorrect number of arguments')
49
1f5e9148
CM
50 repository = 'origin'
51 refspec = None
52 if len(args) >= 1:
53 repository = args[0]
54 if len(args) == 2:
55 refspec = args[1]
56
f338c3c0
CM
57 check_local_changes()
58 check_conflicts()
59 check_head_top_equal()
60
ddbbfd84
CM
61 # pop all patches
62 applied = crt_series.get_applied()
63 if len(applied) > 0:
64 print 'Popping all patches...',
65 sys.stdout.flush()
66 crt_series.pop_patch(applied[0])
67 print 'done'
68
69 # pull the remote changes
1f5e9148
CM
70 print 'Pulling from "%s"...' % repository
71 git.pull(repository, refspec)
f338c3c0
CM
72 print 'done'
73
ddbbfd84
CM
74 # push the patches back
75 if options.nopush:
76 applied = []
77 for p in applied:
78 print 'Pushing patch "%s"...' % p,
79 sys.stdout.flush()
80 crt_series.push_patch(p)
81 if crt_series.empty_patch(p):
82 print 'done (empty patch)'
83 else:
f338c3c0
CM
84 print 'done'
85
f338c3c0 86 print_crt_patch()