summaryrefslogtreecommitdiff
path: root/lib/git
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git')
-rw-r--r--lib/git/repo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/repo.py b/lib/git/repo.py
index 1ceb7449..682b7652 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