Fix a seriously bad interaction between .git caching and repo cloning
[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
93aa248c 26help = 'clone a remote repository into local storage'
1008fbce
CM
27usage = """%prog [options] <repository> <dir>
28
29Clone a GIT <repository> into the local <dir> and initialise the
30patch stack."""
31
32options = []
33
34
35def func(parser, options, args):
36 """Clone the <repository> into the local <dir> and initialises the
37 stack
38 """
39 if len(args) != 2:
40 parser.error('incorrect number of arguments')
41
42 repository = args[0]
43 local_dir = args[1]
44
45 if os.path.exists(local_dir):
46 raise CmdException, '"%s" exists. Remove it first' % local_dir
47
48 print 'Cloning "%s" into "%s"...' % (repository, local_dir)
49
50 git.clone(repository, local_dir)
51 os.chdir(local_dir)
52 git.checkout(tree_id = 'HEAD')
53
608961c2
YD
54 # be sure to forget any cached value for .git, since we're going
55 # to work on a brand new repository
56 basedir.clear_cache()
98290387 57 stack.Series().init()
1008fbce
CM
58
59 print 'done'