diff options
author | Guido Günther <agx@sigxcpu.org> | 2012-03-19 14:37:29 +0100 |
---|---|---|
committer | Guido Günther <agx@sigxcpu.org> | 2012-03-19 14:38:41 +0100 |
commit | 02c32e469b6a4f643bd735c8c21db1fe6ecc0c84 (patch) | |
tree | a566398fce2c31f8cd3bbb834ffa8241b5821c68 /gbp/git | |
parent | de59214f08fbbd87810ff7890c4d681d9b953702 (diff) | |
download | git-buildpackage-02c32e469b6a4f643bd735c8c21db1fe6ecc0c84.tar.gz git-buildpackage-02c32e469b6a4f643bd735c8c21db1fe6ecc0c84.tar.bz2 git-buildpackage-02c32e469b6a4f643bd735c8c21db1fe6ecc0c84.zip |
GitRepository.clone(): document missing options
Diffstat (limited to 'gbp/git')
-rw-r--r-- | gbp/git/repository.py | 4 |
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} |