Hello git-python people, I've been meaning to introduce myself for a while now. I'm the Debian maintainer of python-git (as it is named in Debian).
On Sun, 10 Aug 2008 12:09:58 -0700 Josh Triplett <[EMAIL PROTECTED]> wrote: > git.Repo.create and git.Repo.init_bare (which seem duplicated) claim > in their documentation to create a bare repository, but they > actually create a non-bare repository. I've been waiting for a while to introduce myself, as I didn't have anything useful to contribute. However, I've worked up a patch to fix Josh's problem, which is attached. Cheers, Dan -- Daniel Watkins (Odd_Bloke)
=== modified file 'lib/git/repo.py'
--- lib/git/repo.py 2008-07-29 16:15:43 +0000
+++ lib/git/repo.py 2008-08-18 17:13:53 +0000
@@ -296,7 +296,7 @@
os.makedirs(path, 0755)
git = Git(path)
- output = git.init(**kwargs)
+ output = git.init('--bare', **kwargs)
return Repo(path)
create = init_bare
signature.asc
Description: PGP signature

