Fix the --cover option.
[stgit] / stgit / main.py
CommitLineData
41a6d859
CM
1"""Basic quilt-like functionality
2"""
3
4__copyright__ = """
5Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License version 2 as
9published by the Free Software Foundation.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19"""
20
21import sys, os
22from optparse import OptionParser, make_option
23
873a27fd 24from stgit.utils import *
3659ef88 25from stgit import stack, git, gitmergeonefile
41a6d859
CM
26from stgit.version import version
27from stgit.config import config
fcee87cf
CM
28from stgit.commands.common import *
29
30# The commands
31import stgit.commands.add
32import stgit.commands.applied
7b1ba1a6 33import stgit.commands.branch
fcee87cf
CM
34import stgit.commands.delete
35import stgit.commands.diff
de4c9d27 36import stgit.commands.clean
1008fbce 37import stgit.commands.clone
6a093bbb 38import stgit.commands.commit
fcee87cf
CM
39import stgit.commands.export
40import stgit.commands.files
c14444b9 41import stgit.commands.fold
994fdba7 42import stgit.commands.goto
e1261152 43import stgit.commands.id
0d2cd1e4 44import stgit.commands.imprt
fcee87cf 45import stgit.commands.init
64354a2d 46import stgit.commands.log
b4bddc06 47import stgit.commands.mail
fcee87cf 48import stgit.commands.new
cd25e03d 49import stgit.commands.patches
0618ea9c 50import stgit.commands.pick
fcee87cf 51import stgit.commands.pop
f338c3c0 52import stgit.commands.pull
fcee87cf
CM
53import stgit.commands.push
54import stgit.commands.refresh
e55b53e0 55import stgit.commands.rename
fcee87cf
CM
56import stgit.commands.resolved
57import stgit.commands.rm
58import stgit.commands.series
8847a11b 59import stgit.commands.show
fcee87cf
CM
60import stgit.commands.status
61import stgit.commands.top
62import stgit.commands.unapplied