We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0bdae5f + 6f4dd60 commit 8dbc039Copy full SHA for 8dbc039
1 file changed
config.c
@@ -566,7 +566,20 @@ 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")) {
+ 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
583
if (!strcasecmp(value, "default"))
584
check_stat = 1;
585
else if (!strcasecmp(value, "minimal"))
0 commit comments