diff options
author | Florian Apolloner <florian@apolloner.eu> | 2008-08-21 16:49:42 +0200 |
---|---|---|
committer | Florian Apolloner <florian@apolloner.eu> | 2008-08-21 16:49:42 +0200 |
commit | 8df638c22c75ddc9a43ecdde90c0c9939f5009e7 (patch) | |
tree | 43a63b045e538a38161c8da5e154ff1c9436ea4e /lib/git | |
parent | a6604a00a652e754cb8b6b0b9f194f839fc38d7c (diff) | |
parent | 127e511ea2e22f3bd9a0279e747e9cfa9509986d (diff) | |
download | gitpython-8df638c22c75ddc9a43ecdde90c0c9939f5009e7.tar.gz |
Merge branch 'master' of git@gitorious.org:git-python/mainline
Diffstat (limited to 'lib/git')
-rw-r--r-- | lib/git/repo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/repo.py b/lib/git/repo.py index edaeee83..8f5d4dca 100644 --- a/lib/git/repo.py +++ b/lib/git/repo.py @@ -297,7 +297,7 @@ class Repo(object): os.makedirs(path, 0755) git = Git(path) - output = git.init(**kwargs) + output = git.init('--bare', **kwargs) return Repo(path) create = init_bare |