From e459253815086d6563d359f480d867557598dabf Mon Sep 17 00:00:00 2001 From: Clemens Buchacher Date: Thu, 29 Dec 2011 13:12:51 +0100 Subject: [PATCH] allow opening index in bare repo The git.git implementation allows this, and there is no reason not to. --- src/repository.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/repository.c b/src/repository.c index 67afa2ee2..f87e4d88b 100644 --- a/src/repository.c +++ b/src/repository.c @@ -348,9 +348,6 @@ int git_repository_index__weakptr(git_index **out, git_repository *repo) { assert(out && repo); - if (repo->is_bare) - return git__throw(GIT_EBAREINDEX, "Cannot open index in bare repository"); - if (repo->_index == NULL) { int error; git_buf index_path = GIT_BUF_INIT;