File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -566,7 +566,20 @@ static int git_default_core_config(const char *var, const char *value)
566566 trust_ctime = git_config_bool (var , value );
567567 return 0 ;
568568 }
569- if (!strcmp (var , "core.statinfo" )) {
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+ }
570583 if (!strcasecmp (value , "default" ))
571584 check_stat = 1 ;
572585 else if (!strcasecmp (value , "minimal" ))
You can’t perform that action at this time.
0 commit comments