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 /mailmap.c | |
| parent | 7ce0bee4c4d0f2fc1e8cb0722568438f96d9c717 (diff) | |
| parent | 11e6b3f6d544fd6b2914583749b90b29d1d8683d (diff) | |
| download | git-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 'mailmap.c')
| -rw-r--r-- | mailmap.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -250,7 +250,8 @@ int read_mailmap(struct string_list *map, char **repo_abbrev) git_mailmap_blob = "HEAD:.mailmap"; err |= read_mailmap_file(map, ".mailmap", repo_abbrev); - err |= read_mailmap_blob(map, git_mailmap_blob, repo_abbrev); + if (startup_info->have_repository) + err |= read_mailmap_blob(map, git_mailmap_blob, repo_abbrev); err |= read_mailmap_file(map, git_mailmap_file, repo_abbrev); return err; } |
