]> Cypherpunks.ru repositories - gostls13.git/blob - .gitattributes
[dev.link] all: merge branch 'master' into dev.link
[gostls13.git] / .gitattributes
1 # Treat all files in the Go repo as binary, with no git magic updating
2 # line endings. Windows users contributing to Go will need to use a
3 # modern version of git and editors capable of LF line endings.
4 #
5 # We'll prevent accidental CRLF line endings from entering the repo
6 # via the git-review gofmt checks.
7 #
8 # See golang.org/issue/9281
9
10 * -text
11
12 # The only exception is Windows files that must absolutely be CRLF or
13 # might not work. Batch files are known to have multiple bugs when run
14 # with LF endings. See golang.org/issue/37791 for more information.
15
16 *.bat text eol=crlf