diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-07-04 00:39:15 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-07-04 00:39:15 +0200 |
commit | 8dbc03933d0832764fe80576d249d5b9d3b52f20 (patch) | |
tree | 04fa84d97b01931ab6af61240e742f248bb7774f /config.c | |
parent | Merge branch 'jc/t5551-posix-sed-bre' into maint (diff) | |
parent | deprecate core.statinfo at Git 2.0 boundary (diff) | |
download | git-8dbc03933d0832764fe80576d249d5b9d3b52f20.tar.xz git-8dbc03933d0832764fe80576d249d5b9d3b52f20.zip |
Merge branch 'jc/core-checkstat' into maint
* jc/core-checkstat:
deprecate core.statinfo at Git 2.0 boundary
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -566,7 +566,20 @@ static int git_default_core_config(const char *var, const char *value) trust_ctime = git_config_bool(var, value); return 0; } - if (!strcmp(var, "core.statinfo")) { + if (!strcmp(var, "core.statinfo") || + !strcmp(var, "core.checkstat")) { + /* + * NEEDSWORK: statinfo was a typo in v1.8.2 that has + * never been advertised. we will remove it at Git + * 2.0 boundary. + */ + if (!strcmp(var, "core.statinfo")) { + static int warned; + if (!warned++) { + warning("'core.statinfo' will be removed in Git 2.0; " + "use 'core.checkstat' instead."); + } + } if (!strcasecmp(value, "default")) check_stat = 1; else if (!strcasecmp(value, "minimal")) |