aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2012-03-19 14:37:29 +0100
committerGuido Günther <agx@sigxcpu.org>2012-03-19 14:38:41 +0100
commit02c32e469b6a4f643bd735c8c21db1fe6ecc0c84 (patch)
treea566398fce2c31f8cd3bbb834ffa8241b5821c68
parentde59214f08fbbd87810ff7890c4d681d9b953702 (diff)
GitRepository.clone(): document missing options
-rw-r--r--gbp/git/repository.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/gbp/git/repository.py b/gbp/git/repository.py
index 96afc5a1..7b84d7d0 100644
--- a/gbp/git/repository.py
+++ b/gbp/git/repository.py
@@ -1314,6 +1314,10 @@ class GitRepository(object):
@type depth: C{int}
@param recursive: whether to clone submodules
@type recursive: C{bool}
+ @param mirror: whether to pass --mirror to git-clone
+ @type mirror: C{bool}
+ @param bare: whether to create a bare repository
+ @type bare: C{bool}
@param auto_name: If I{True} create a directory below I{path} based on
the I{remote}s name. Otherwise create the repo directly at I{path}.
@type auto_name: C{bool}