summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphlib/git.py6
-rw-r--r--morphlib/gitdir.py3
2 files changed, 9 insertions, 0 deletions
diff --git a/morphlib/git.py b/morphlib/git.py
index 5f2ca7f6..063ec0e7 100644
--- a/morphlib/git.py
+++ b/morphlib/git.py
@@ -264,6 +264,12 @@ def is_valid_sha1(ref):
return len(ref) == 40 and all(x in string.hexdigits for x in ref)
+def clone_into(runcmd, srcpath, targetpath, ref=None):
+ '''Clones a repo in srcpath into targetpath, optionally directly at ref.'''
+ if ref is None:
+ runcmd(['git', 'clone', srcpath, targetpath])
+ else:
+ runcmd(['git', 'clone', '-b', ref, srcpath, targetpath])
def gitcmd(runcmd, *args, **kwargs):
'''Run git commands safely'''
diff --git a/morphlib/gitdir.py b/morphlib/gitdir.py
index f1286b25..0189ccb6 100644
--- a/morphlib/gitdir.py
+++ b/morphlib/gitdir.py
@@ -484,6 +484,9 @@ class GitDirectory(object):
# Exact error is logged already by the runcmd() function.
raise NoGitRepoError(self.dirname)
+ def clone_into(self, dst, ref=None): #pragma: no cover
+ morphlib.git.clone_into(cliapp.runcmd, self.dirname, dst, ref=ref)
+
def checkout(self, branch_name): # pragma: no cover
'''Check out a git branch.'''
morphlib.git.gitcmd(self._runcmd, 'checkout', branch_name)