relnotes: redo the description of text=auto fix
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Junio C Hamano committed
Aug 17, 2016 at 10:18 UTC
07d1a42badf5a29b030f9d1c4c8dd1ff9fdc8a91
1 file changed
+4
-5
Documentation/RelNotes/2.10.0.txt
+4
-5
@@ -235,13 +235,12 @@ Performance, Internal Implementation, Development Support etc.
235
* The API to iterate over all the refs (i.e. for_each_ref(), etc.)
236
has been revamped.
237
238
- * The handling of the "text = auto" attribute has been updated.
238
+ * The handling of the "text=auto" attribute has been corrected.
239
$ echo "* text=auto eol=crlf" >.gitattributes
240
used to have the same effect as
241
- $ echo "* text=auto eol=crlf" >.gitattributes
242
- $ git config core.eol crlf
243
- i.e. declaring all files are text; the combination now is
244
- equivalent to doing
241
+ $ echo "* text eol=crlf" >.gitattributes
242
+ i.e. declaring all files are text (ignoring "auto"). The
243
+ combination has been fixed to be equivalent to doing
244
$ git config core.autocrlf true
245
246
* A few tests that specifically target "git rebase -i" have been