Re: File path not escaped in warning message
From: Junio C Hamano <hidden>
Date: 2016-06-15 22:54:25
Janusz Białobrzewski [off-list ref] writes:
Here is output from linux: [janusz@mikrus JavaCommon]$ git config --add core.quotepath false [janusz@mikrus JavaCommon]$ git diff --unified=3 -- "1ą.txt" warning: LF will be replaced by CRLF in 1<B1>.txt. The file will have its original line endings in your working directory.
I do not know offhand if the literal <B1> is the byte value you want or not, but core.quotepath should not affect it. The configuration is primarily about quoting paths that appear in the header part in the diff output for machine readability. In this output,
quoted hunk
diff --git a/1<B1>.txt b/1<B1>.txt index 281ad6f..9444a66 100644 --- a/1<B1>.txt +++ b/1<B1>.txt
the paths are not quoted because quotepath is set to false, but in the next example, it
quoted hunk
... [janusz@mikrus JavaCommon]$ git config --unset core.quotepath [janusz@mikrus JavaCommon]$ git config --add core.quotepath true [janusz@mikrus JavaCommon]$ git diff --unified=3 -- "1ą.txt" warning: LF will be replaced by CRLF in 1<B1>.txt. The file will have its original line endings in your working directory.diff --git "a/1\261.txt" "b/1\261.txt" index 281ad6f..9444a66 100644 --- "a/1\261.txt" +++ "b/1\261.txt"
is quoted due to the configuration setting. Again, <B1> in the warning message is not affected, as the quotepath configuration is not meant to affect messages that are meant for human consumption. -- *** Please reply-to-all at all times *** *** (do not pretend to know who is subscribed and who is not) *** *** Please avoid top-posting. *** The msysGit Wiki is here: https://github.com/msysgit/msysgit/wiki - Github accounts are free. You received this message because you are subscribed to the Google Groups "msysGit" group. To post to this group, send email to msysgit@googlegroups.com To unsubscribe from this group, send email to msysgit+unsubscribe@googlegroups.com For more options, and view previous threads, visit this group at http://groups.google.com/group/msysgit?hl=en_US?hl=en