diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2011-03-15 04:04:49 -0500 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-03-15 12:23:30 -0700 |
commit | 8f323c00dd3c9b396b01a1aeea74f7dfd061bb7f (patch) | |
tree | f3f33e362aafcbac2374252026ccbda07508bdc0 /cache.h | |
parent | e91b6c504961a147f0ab4e2fc05be914f881290a (diff) | |
download | git-8f323c00dd3c9b396b01a1aeea74f7dfd061bb7f.tar.gz git-8f323c00dd3c9b396b01a1aeea74f7dfd061bb7f.tar.xz |
config: drop support for GIT_CONFIG_NOGLOBAL
Now that test-lib sets $HOME to protect against pollution from user
settings, GIT_CONFIG_NOGLOBAL is not needed for use by the test
suite any more. And as luck would have it, a quick code search
reveals no other users in the wild.
This patch does not affect GIT_CONFIG_NOSYSTEM, which is still
needed.
Helped-by: Jeff King <peff@peff.net>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -1020,7 +1020,6 @@ extern const char *git_etc_gitconfig(void); extern int check_repository_format_version(const char *var, const char *value, void *cb); extern int git_env_bool(const char *, int); extern int git_config_system(void); -extern int git_config_global(void); extern int config_error_nonbool(const char *); extern const char *get_log_output_encoding(void); extern const char *get_commit_output_encoding(void); |