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.patches
48 import stgit.commands.pick
49 import stgit.commands.pop
50 import stgit.commands.pull
51 import stgit.commands.push
52 import stgit.commands.refresh
53 import stgit.commands.rename
54 import stgit.commands.resolved
55 import stgit.commands.rm
56 import stgit.commands.series
57 import stgit.commands.status
58 import stgit.commands.top
59 import stgit.commands.unapplied
60 import stgit.commands.uncommit
67 'add': stgit.commands.add,
68 'applied': stgit.commands.applied,
69 'branch': stgit.commands.branch,
70 'delete': stgit.commands.delete,
71 'diff': stgit.commands.diff,
72 'clean': stgit.commands.clean,
73 'clone': stgit.commands.clone,
74 'commit': stgit.commands.commit,
75 'export': stgit.commands.export,
76 'files': stgit.commands.files,
77 'fold': stgit.commands.fold,
78 'id': stgit.commands.id,
79 'import': stgit.commands.imprt,
80 'init': stgit.commands.init,
81 'mail': stgit.commands.mail,
82 'new': stgit.commands.new,
83 'patches': stgit.commands.patches,
84 'pick': stgit.commands.pick,
85 'pop': stgit.commands.pop,
86 'pull': stgit.commands.pull,
87 'push': stgit.commands.push,
88 'refresh': stgit.commands.refresh,
89 'rename': stgit.commands.rename,
90 'resolved': stgit.commands.resolved,
91 'rm': stgit.commands.rm,
92 'series': stgit.commands.series,
93 'status': stgit.commands.status,
94 'top': stgit.commands.top,
95 'unapplied':stgit.commands.unapplied,
96 'uncommit': stgit.commands.uncommit,
100 print 'usage: %s <command> [options]' % os.path.basename(sys.argv[0])
103 print ' help print this message'
104 print ' version display version information'
105 print ' copyright display copyright information'
108 cmds = commands.keys()
111 print ' ' + cmd + ' ' * (12 - len(cmd)) + commands[cmd].help
114 # The main function (command dispatcher)
119 prog = os.path.basename(sys.argv[0])
121 if len(sys.argv) < 2:
122 print >> sys.stderr, 'Unknown command'
123 print >> sys.stderr, \
124 ' Try "%s help" for a list of supported commands' % prog
129 if cmd in ['-h', '--help', 'help']:
130 if len(sys.argv) == 3 and sys.argv[2] in commands:
132 sys.argv[2] = '--help';
136 if cmd in ['-v', '--version', 'version']:
137 print 'Stacked GIT %s' % version
138 os.system('git --version')
139 print 'Python version %s' % sys.version
141 if cmd in ['copyright']:
144 if not cmd in commands:
145 print >> sys.stderr, 'Unknown command: %s' % cmd
146 print >> sys.stderr, ' Try "%s help" for a list of supported ' \
150 # re-build the command line arguments
151 sys.argv[0] += ' %s' % cmd
154 command = commands[cmd]
155 parser = OptionParser(usage = command.usage,
156 option_list = command.options)
157 options, args = parser.parse_args()
159 # 'clone' doesn't expect an already initialised GIT tree. A Series
160 # object will be created after the GIT tree is cloned
162 if hasattr(options, 'branch') and options.branch:
163 command.crt_series = stack.Series(options.branch)
165 command.crt_series = stack.Series()
166 stgit.commands.common.crt_series = command.crt_series
168 command.func(parser, options, args)
169 except (IOError, CmdException, stack.StackException, git.GitException), \
171 print >> sys.stderr, '%s %s: %s' % (prog, cmd, err)
173 except KeyboardInterrupt: