chiark / gitweb /
Infrastructure for current directory handling
[stgit] / stgit / commands / clone.py
1 __copyright__ = """
2 Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License version 2 as
6 published by the Free Software Foundation.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 GNU General Public License for more details.
12
13 You should have received a copy of the GNU General Public License
14 along with this program; if not, write to the Free Software
15 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 """
17
18 import sys, os
19 from optparse import OptionParser, make_option
20
21 from stgit.commands.common import *
22 from stgit.utils import *
23 from stgit import stack, git
24
25
26 help = 'make a local clone of a remote repository'
27 usage = """%prog [options] <repository> <dir>
28
29 Clone a GIT <repository> into the local <dir> and initialise the
30 patch stack."""
31
32 directory = DirectoryAnywhere()
33 options = []
34
35
36 def func(parser, options, args):
37     """Clone the <repository> into the local <dir> and initialises the
38     stack
39     """
40     if len(args) != 2:
41         parser.error('incorrect number of arguments')
42
43     repository = args[0]
44     local_dir = args[1]
45
46     if os.path.exists(local_dir):
47         raise CmdException, '"%s" exists. Remove it first' % local_dir
48
49     print 'Cloning "%s" into "%s"...' % (repository, local_dir)
50
51     git.clone(repository, local_dir)
52     os.chdir(local_dir)
53     git.checkout(tree_id = 'HEAD')
54
55     # be sure to forget any cached value for .git, since we're going
56     # to work on a brand new repository
57     basedir.clear_cache()
58     stack.Series().init()
59
60     print 'done'