From 073ce43a3cde663ea1eb73ca0dfc7f7b145824e1 Mon Sep 17 00:00:00 2001 Message-Id: <073ce43a3cde663ea1eb73ca0dfc7f7b145824e1.1746796835.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 8 Jun 2008 23:20:15 +0100 Subject: [PATCH] Convert "init" to the new StGIT infrastructure MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Organization: Straylight/Edgeware From: Catalin Marinas Signed-off-by: Catalin Marinas Acked-by: Karl Hasselström --- stgit/commands/init.py | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/stgit/commands/init.py b/stgit/commands/init.py index 475a4ce..b68acd7 100644 --- a/stgit/commands/init.py +++ b/stgit/commands/init.py @@ -16,13 +16,8 @@ along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ -import sys, os -from optparse import OptionParser, make_option - -from stgit.commands.common import * -from stgit.utils import * -from stgit import stack, git - +from stgit.commands import common +from stgit.lib import stack help = 'initialise the current branch for use with StGIT' usage = """%prog [options] @@ -31,14 +26,13 @@ Initialise the current GIT branch to be used as an StGIT stack. Note that you must already be in a GIT repository and .git/HEAD must point to a valid file in refs/heads/.""" -directory = DirectoryHasRepository() +directory = common.DirectoryHasRepositoryLib() options = [] - def func(parser, options, args): """Performs the repository initialisation """ if len(args) != 0: parser.error('incorrect number of arguments') - crt_series.init() + stack.Stack.initialise(directory.repository) -- [mdw]