summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2016-04-03 10:29:35 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2016-04-03 10:29:36 -0700
commit05bf1cdccda51ec28e8bd8968855c74a9c11d37b (patch)
tree4c4181dcae980847a4947598cdf8e0f1c24994ae /cache.h
parentMerge branch 'es/test-gpg-tags' (diff)
parentuse setup_git_directory() in test-* programs (diff)
downloadtgif-05bf1cdccda51ec28e8bd8968855c74a9c11d37b.tar.xz
Merge branch 'jk/startup-info'
The startup_info data, which records if we are working inside a repository (among other things), are now uniformly available to Git subcommand implementations, and Git avoids attempting to touch references when we are not in a repository. * jk/startup-info: use setup_git_directory() in test-* programs grep: turn off gitlink detection for --no-index mailmap: do not resolve blobs in a non-repository remote: don't resolve HEAD in non-repository setup: set startup_info->have_repository more reliably setup: make startup_info available everywhere
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cache.h b/cache.h
index b829410f6d..9f09540bbc 100644
--- a/cache.h
+++ b/cache.h
@@ -1771,7 +1771,7 @@ int split_cmdline(char *cmdline, const char ***argv);
/* Takes a negative value returned by split_cmdline */
const char *split_cmdline_strerror(int cmdline_errno);
-/* git.c */
+/* setup.c */
struct startup_info {
int have_repository;
const char *prefix;