Skip to content
forked from git/git

Commit 5cc23bb

Browse files
committed
Fix removing lazy initialization of repository state
The commit that created the bug: 73f192c Lazy initialization was removed incorrectly!
1 parent bb21c28 commit 5cc23bb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

environment.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,7 @@ int is_bare_repository(void)
203203

204204
int have_git_dir(void)
205205
{
206-
return startup_info->have_repository
207-
|| the_repository->gitdir;
206+
return the_repository->gitdir;
208207
}
209208

210209
const char *get_git_dir(void)

0 commit comments

Comments
 (0)