diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-08-15 10:20:38 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-08-15 13:15:49 -0700 |
commit | 07c92928f2b782330df6e78dd9d019e984d820a7 (patch) | |
tree | f02b5543f5592998ec7adb7c9591c4d8705964b9 /Documentation/RelNotes | |
parent | Git 2.10-rc0 (diff) | |
download | tgif-07c92928f2b782330df6e78dd9d019e984d820a7.tar.xz |
Relnotes: decribe the updates to the "text=auto" attribute
Helped-by: Torsten Bögershausen <tboegi@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/RelNotes')
-rw-r--r-- | Documentation/RelNotes/2.10.0.txt | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Documentation/RelNotes/2.10.0.txt b/Documentation/RelNotes/2.10.0.txt index 88d336ff16..179e5751d8 100644 --- a/Documentation/RelNotes/2.10.0.txt +++ b/Documentation/RelNotes/2.10.0.txt @@ -235,6 +235,15 @@ 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. + $ 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 + $ git config core.autocrlf true + * A few tests that specifically target "git rebase -i" have been added. |