On Fri, Mar 9, 2018 at 12:35 PM, <lars.schneider@xxxxxxxxxxxx> wrote: > [...] > Add 'core.checkRoundtripEncoding', which contains a comma separated > list of encodings, to define for what encodings Git should check the > conversion round trip if they are used in the 'working-tree-encoding' > attribute. > [...] > Signed-off-by: Lars Schneider <larsxschneider@xxxxxxxxx> > --- > diff --git a/convert.c b/convert.c > @@ -1150,7 +1227,7 @@ static const char *git_path_check_encoding(struct attr_check_item *check) > /* Don't encode to the default encoding */ > - if (!strcasecmp(value, default_encoding)) > + if (is_encoding_utf8(value) && is_encoding_utf8(default_encoding)) > return NULL; This change belongs in 6/10, not 10/10, methinks.