chiark / gitweb /
Infrastructure for current directory handling
[stgit] / stgit / commands / clone.py
CommitLineData
1008fbce
CM
1__copyright__ = """
2Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
3
4This program is free software; you can redistribute it and/or modify
5it under the terms of the GNU General Public License version 2 as
6published by the Free Software Foundation.
7
8This program is distributed in the hope that it will be useful,
9but WITHOUT ANY WARRANTY; without even the implied warranty of
10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11GNU General Public License for more details.
12
13You should have received a copy of the GNU General Public License
14along with this program; if not, write to the Free Software
15Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16"""
17
18import sys, os
19from optparse import OptionParser, make_option
20
21from stgit.commands.common import *
22from stgit.utils import *
23from stgit import stack, git
24
25
4ec67741 26help = 'make a local clone of a remote repository'
1008fbce
CM
27usage = """%prog [options] <repository> <dir>
28
29Clone a GIT <repository> into the local <dir> and initialise the
30patch stack."""
31
6dd8fafa 32directory = DirectoryAnywhere()
1008fbce
CM
33options = []
34
35
36def 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
608961c2
YD
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()
98290387 58 stack.Series().init()
1008fbce
CM
59
60 print 'done'