diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2015-09-28 20:06:13 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-09-28 10:46:22 -0700 |
commit | 0f64cc407f32f979c8bcfa7d3d9b24d8e023df35 (patch) | |
tree | 62deb9f13bd3ba946fc56d3f8a0b0abea320203f /path.c | |
parent | 31041209fee1ebc6420b069e9c1e283241496545 (diff) | |
download | git-0f64cc407f32f979c8bcfa7d3d9b24d8e023df35.tar.gz |
enter_repo: avoid duplicating logic, use is_git_directory() instead
It matters for linked checkouts where 'refs' directory won't be
available in $GIT_DIR. is_git_directory() knows about $GIT_COMMON_DIR
and can handle this case.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'path.c')
-rw-r--r-- | path.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -441,8 +441,7 @@ const char *enter_repo(const char *path, int strict) else if (chdir(path)) return NULL; - if (access("objects", X_OK) == 0 && access("refs", X_OK) == 0 && - validate_headref("HEAD") == 0) { + if (is_git_directory(".")) { set_git_dir("."); check_repository_format(); return path; |