diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-05-21 13:02:15 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-05-21 13:02:15 +0200 |
commit | 78f17935a306dfd7a1f32c923e0b05a094bf0c25 (patch) | |
tree | 69ecde34e33b2a425d38918488ebb45aaf92eb5a /config.c | |
parent | Merge branch 'ar/config-from-command-line' (diff) | |
parent | Rename ONE_FILESYSTEM to DISCOVERY_ACROSS_FILESYSTEM (diff) | |
download | git-78f17935a306dfd7a1f32c923e0b05a094bf0c25.tar.xz git-78f17935a306dfd7a1f32c923e0b05a094bf0c25.zip |
Merge branch 'ld/discovery-limit-to-fs' (early part)
* 'ld/discovery-limit-to-fs' (early part):
Rename ONE_FILESYSTEM to DISCOVERY_ACROSS_FILESYSTEM
GIT_ONE_FILESYSTEM: flip the default to stop at filesystem boundaries
Add support for GIT_ONE_FILESYSTEM
truncate cwd string before printing error message
config.c: remove static keyword from git_env_bool()
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -739,7 +739,7 @@ const char *git_etc_gitconfig(void) return system_wide; } -static int git_env_bool(const char *k, int def) +int git_env_bool(const char *k, int def) { const char *v = getenv(k); return v ? git_config_bool(k, v) : def; |