mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
relnotes: redo the description of text=auto fix
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
07c92928f2
commit
07d1a42bad
1 changed files with 4 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue