Skip to content

Commit

Permalink
relnotes: redo the description of text=auto fix
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
gitster committed Aug 17, 2016
1 parent 07c9292 commit 07d1a42
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Documentation/RelNotes/2.10.0.txt
Expand Up @@ -235,13 +235,12 @@ Performance, Internal Implementation, Development Support etc.
* The API to iterate over all the refs (i.e. for_each_ref(), etc.)
has been revamped.

* The handling of the "text = auto" attribute has been updated.
* The handling of the "text=auto" attribute has been corrected.
$ echo "* text=auto eol=crlf" >.gitattributes
used to have the same effect as
$ echo "* text=auto eol=crlf" >.gitattributes
$ git config core.eol crlf
i.e. declaring all files are text; the combination now is
equivalent to doing
$ echo "* text eol=crlf" >.gitattributes
i.e. declaring all files are text (ignoring "auto"). The
combination has been fixed to be equivalent to doing
$ git config core.autocrlf true

* A few tests that specifically target "git rebase -i" have been
Expand Down

0 comments on commit 07d1a42

Please sign in to comment.