diff options
author | Hung Nguyen Viet <hvn@familug.org> | 2015-06-01 14:34:14 +0700 |
---|---|---|
committer | Hung Nguyen Viet <hvn@familug.org> | 2015-06-01 14:34:14 +0700 |
commit | 643e6369553759407ca433ed51a5a06b47e763d4 (patch) | |
tree | f26902b866a5cd3866b9f7f101681991cf883a39 /git/repo/base.py | |
parent | c1d5c614c38db015485190d65db05b0b75d171d4 (diff) | |
download | gitpython-643e6369553759407ca433ed51a5a06b47e763d4.tar.gz |
add docstring for new arg
Diffstat (limited to 'git/repo/base.py')
-rw-r--r-- | git/repo/base.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/git/repo/base.py b/git/repo/base.py index 45550826..c8915bbc 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -750,6 +750,11 @@ class Repo(object): already exists. Creates the directory with a mode=0755. Only effective if a path is explicitly given + :param odbt: + Object DataBase type - a type which is constructed by providing + the directory containing the database objects, i.e. .git/objects. + It will be used to access all object data + :parm kwargs: keyword arguments serving as additional options to the git-init command |