1 """Basic quilt-like functionality
5 Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as
9 published by the Free Software Foundation.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 from optparse import OptionParser, make_option
24 from stgit.utils import *
25 from stgit import stack, git
26 from stgit.version import version
27 from stgit.config import config
28 from stgit.commands.common import *
31 import stgit.commands.add
32 import stgit.commands.applied
33 import stgit.commands.branch
34 import stgit.commands.delete
35 import stgit.commands.diff
36 import stgit.commands.clean
37 import stgit.commands.clone
38 import stgit.commands.commit
39 import stgit.commands.export
40 import stgit.commands.files
41 import stgit.commands.fold
42 import stgit.commands.id
43 import stgit.commands.imprt
44 import stgit.commands.init
45 import stgit.commands.mail
46 import stgit.commands.new
47 import stgit.commands.pick
48 import stgit.commands.pop
49 import stgit.commands.pull
50 import stgit.commands.push
51 import stgit.commands.refresh
52 import stgit.commands.rename
53 import stgit.commands.resolved
54 import stgit.commands.rm
55 import stgit.commands.series
56 import stgit.commands.status
57 import stgit.commands.top
58 import stgit.commands.unapplied
65 'add': stgit.commands.add,
66 'applied': stgit.commands.applied,
67 'branch': stgit.commands.branch,
68 'delete': stgit.commands.delete,
69 'diff': stgit.commands.diff,
70 'clean': stgit.commands.clean,
71 'clone': stgit.commands.clone,
72 'commit': stgit.commands.commit,
73 'export': stgit.commands.export,
74 'files': stgit.commands.files,
75 'fold': stgit.commands.fold,
76 'id': stgit.commands.id,
77 'import': stgit.commands.imprt,
78 'init': stgit.commands.init,
79 'mail': stgit.commands.mail,
80 'new': stgit.commands.new,
81 'pick': stgit.commands.pick,
82 'pop': stgit.commands.pop,
83 'pull': stgit.commands.pull,
84 'push': stgit.commands.push,
85 'refresh': stgit.commands.refresh,
86 'rename': stgit.commands.rename,
87 'resolved': stgit.commands.resolved,
88 'rm': stgit.commands.rm,
89 'series': stgit.commands.series,
90 'status': stgit.commands.status,
91 'top': stgit.commands.top,
92 'unapplied':stgit.commands.unapplied,
96 print 'usage: %s <command> [options]' % os.path.basename(sys.argv[0])
99 print ' help print this message'
100 print ' version display version information'
101 print ' copyright display copyright information'
104 cmds = commands.keys()
107 print ' ' + cmd + ' ' * (12 - len(cmd)) + commands[cmd].help
110 # The main function (command dispatcher)
115 prog = os.path.basename(sys.argv[0])
117 if len(sys.argv) < 2:
118 print >> sys.stderr, 'Unknown command'
119 print >> sys.stderr, \
120 ' Try "%s help" for a list of supported commands' % prog
125 if cmd in ['-h', '--help', 'help']:
128 if cmd in ['-v', '--version', 'version']:
129 print 'Stacked GIT %s' % version
130 os.system('git --version')
131 print 'Python version %s' % sys.version
133 if cmd in ['copyright']:
136 if not cmd in commands:
137 print >> sys.stderr, 'Unknown command: %s' % cmd
138 print >> sys.stderr, ' Try "%s help" for a list of supported ' \
142 # re-build the command line arguments
143 sys.argv[0] += ' %s' % cmd
146 command = commands[cmd]
147 parser = OptionParser(usage = command.usage,
148 option_list = command.options)
149 options, args = parser.parse_args()
151 # 'clone' doesn't expect an already initialised GIT tree
153 stgit.commands.common.crt_series = stack.Series('master')
154 elif hasattr(options, 'branch') and options.branch:
155 stgit.commands.common.crt_series = stack.Series(options.branch)
157 stgit.commands.common.crt_series = stack.Series()
158 # the line below is a simple way to avoid an exception when
159 # stgit is run outside an initialised tree
160 setattr(command, 'crt_series', stgit.commands.common.crt_series)
162 command.func(parser, options, args)
163 except (IOError, CmdException, stack.StackException, git.GitException), \
165 print >> sys.stderr, '%s %s: %s' % (prog, cmd, err)
167 except KeyboardInterrupt: