Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> --- setup.c | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/setup.c b/setup.c index 3019da2..e067292 100644 --- a/setup.c +++ b/setup.c @@ -535,8 +535,14 @@ char *enter_repo(char *path, int strict) if (access("objects", X_OK) == 0 && access("refs", X_OK) == 0 && validate_headref("HEAD") == 0) { - set_git_dir("."); + inside_work_tree = 0; + inside_git_dir = 1; check_repository_format(); + set_git_dir("."); + if (startup_info) { + startup_info->prefix = NULL; + startup_info->have_repository = 1; + } return path; } -- 1.7.0.1.384.g6abcaa -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html