We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 160c4b1 + c1b5d73 commit 2b4a888Copy full SHA for 2b4a888
1 file changed
config.c
@@ -667,20 +667,7 @@ static int git_default_core_config(const char *var, const char *value)
667
trust_ctime = git_config_bool(var, value);
668
return 0;
669
}
670
- if (!strcmp(var, "core.statinfo") ||
671
- !strcmp(var, "core.checkstat")) {
672
- /*
673
- * NEEDSWORK: statinfo was a typo in v1.8.2 that has
674
- * never been advertised. we will remove it at Git
675
- * 2.0 boundary.
676
- */
677
- if (!strcmp(var, "core.statinfo")) {
678
- static int warned;
679
- if (!warned++) {
680
- warning("'core.statinfo' will be removed in Git 2.0; "
681
- "use 'core.checkstat' instead.");
682
- }
683
+ if (!strcmp(var, "core.checkstat")) {
684
if (!strcasecmp(value, "default"))
685
check_stat = 1;
686
else if (!strcasecmp(value, "minimal"))
0 commit comments