diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-04-03 10:29:35 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-04-03 10:29:36 -0700 |
commit | 05bf1cdccda51ec28e8bd8968855c74a9c11d37b (patch) | |
tree | 4c4181dcae980847a4947598cdf8e0f1c24994ae /builtin/init-db.c | |
parent | Merge branch 'es/test-gpg-tags' (diff) | |
parent | use setup_git_directory() in test-* programs (diff) | |
download | tgif-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 'builtin/init-db.c')
-rw-r--r-- | builtin/init-db.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/init-db.c b/builtin/init-db.c index 6223b7d46a..da531f6b76 100644 --- a/builtin/init-db.c +++ b/builtin/init-db.c @@ -322,6 +322,7 @@ int set_git_dir_init(const char *git_dir, const char *real_git_dir, set_git_dir(real_path(git_dir)); git_link = NULL; } + startup_info->have_repository = 1; return 0; } |