aboutsummaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorStefan Beller <sbeller@google.com>2017-01-24 15:56:49 -0800
committerJunio C Hamano <gitster@pobox.com>2017-01-26 11:00:24 -0800
commit40d96325143ae04cb3f645ac96f6413d1f641b9b (patch)
tree7735daaa9b2177d15d4241f43ba76643a5c8718f /cache.h
parent4e59582ff70d299f5a88449891e78d15b4b3fabe (diff)
downloadgit-40d96325143ae04cb3f645ac96f6413d1f641b9b.tar.gz
git-40d96325143ae04cb3f645ac96f6413d1f641b9b.tar.xz
setup: add gentle version of resolve_git_dir
This follows a93bedada (setup: add gentle version of read_gitfile, 2015-06-09), and assumes the same reasoning. resolve_git_dir is unsuited for speculative calls, so we want to use the gentle version to find out about potential errors. Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index 00a029af3..cafa3d10a 100644
--- a/cache.h
+++ b/cache.h
@@ -509,7 +509,9 @@ extern int is_nonbare_repository_dir(struct strbuf *path);
#define READ_GITFILE_ERR_TOO_LARGE 8
extern const char *read_gitfile_gently(const char *path, int *return_error_code);
#define read_gitfile(path) read_gitfile_gently((path), NULL)
-extern const char *resolve_gitdir(const char *suspect);
+extern const char *resolve_gitdir_gently(const char *suspect, int *return_error_code);
+#define resolve_gitdir(path) resolve_gitdir_gently((path), NULL)
+
extern void set_git_work_tree(const char *tree);
#define ALTERNATE_DB_ENVIRONMENT "GIT_ALTERNATE_OBJECT_DIRECTORIES"