chiark / gitweb /
Convert "init" to the new StGIT infrastructure
[stgit] / stgit / commands / init.py
index 0326f9abd9da42b9dc91f7d31066f75828fd7b77..b68acd746cb5f7bbb0a72eb3fdb4b4f95ffa66e4 100644 (file)
@@ -16,31 +16,23 @@ along with this program; if not, write to the Free Software
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 """
 
 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
 """
 
-import sys, os
-from optparse import OptionParser, make_option
+from stgit.commands import common
+from stgit.lib import stack
 
 
-from stgit.commands.common import *
-from stgit.utils import *
-from stgit import stack, git
-
-
-help = 'initialise the tree for use with StGIT'
+help = 'initialise the current branch for use with StGIT'
 usage = """%prog [options]
 
 usage = """%prog [options]
 
-Initialise a GIT repository to be used with StGIT. Note that the
-repository must be already initialised with git-init-db and the
-.git/HEAD link must point to a valid file in refs/heads/. For people
-switching between multiple branches in the same repository, the 'init'
-command has to be run on all the individual branches intended to be
-used with StGIT."""
+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 = common.DirectoryHasRepositoryLib()
 options = []
 
 options = []
 
-
 def func(parser, options, args):
     """Performs the repository initialisation
     """
     if len(args) != 0:
         parser.error('incorrect number of arguments')
 
 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)