We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f4dd60 commit c1b5d73Copy full SHA for c1b5d73
1 file changed
config.c
@@ -566,20 +566,7 @@ static int git_default_core_config(const char *var, const char *value)
566
trust_ctime = git_config_bool(var, value);
567
return 0;
568
}
569
- if (!strcmp(var, "core.statinfo") ||
570
- !strcmp(var, "core.checkstat")) {
571
- /*
572
- * NEEDSWORK: statinfo was a typo in v1.8.2 that has
573
- * never been advertised. we will remove it at Git
574
- * 2.0 boundary.
575
- */
576
- if (!strcmp(var, "core.statinfo")) {
577
- static int warned;
578
- if (!warned++) {
579
- warning("'core.statinfo' will be removed in Git 2.0; "
580
- "use 'core.checkstat' instead.");
581
- }
582
+ if (!strcmp(var, "core.checkstat")) {
583
if (!strcasecmp(value, "default"))
584
check_stat = 1;
585
else if (!strcasecmp(value, "minimal"))
0 commit comments