diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-05-17 14:38:39 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-05-17 14:38:39 -0700 |
commit | bfc99b63fe859e16ddcfcbe6ac09f98b8d06b34e (patch) | |
tree | 4b41f6056f3e599052a554e13269838eb040d807 /config.c | |
parent | 5bfc50d6fe58ec38f55efff43220dc3274b4629b (diff) | |
parent | ebf31e70bbea010c9bb505578ae29532445b5a4d (diff) | |
download | git-bfc99b63fe859e16ddcfcbe6ac09f98b8d06b34e.tar.gz git-bfc99b63fe859e16ddcfcbe6ac09f98b8d06b34e.tar.xz |
Merge branch 'js/windows-dotgit'
On Windows, .git and optionally any files whose name starts with a
dot are now marked as hidden, with a core.hideDotFiles knob to
customize this behaviour.
* js/windows-dotgit:
mingw: remove unnecessary definition
mingw: introduce the 'core.hideDotFiles' setting
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -915,6 +915,14 @@ static int git_default_core_config(const char *var, const char *value) return 0; } + if (!strcmp(var, "core.hidedotfiles")) { + if (value && !strcasecmp(value, "dotgitonly")) + hide_dotfiles = HIDE_DOTFILES_DOTGITONLY; + else + hide_dotfiles = git_config_bool(var, value); + return 0; + } + /* Add other config variables here and to Documentation/config.txt. */ return 0; } |