diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-07-18 14:14:25 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2023-07-18 14:23:37 +0200 |
| commit | 48957dce8767fb573527626b4a4a060fa3f1b98a (patch) | |
| tree | 61778d655714fe6ba687b27b1ccc61e68a3ae48e | |
| parent | fc901f98564134368db3a92fb0644c5afe292f10 (diff) | |
Add gitattributes to control crlf conversion.
| -rw-r--r-- | .gitattributes | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..4db9edae7 --- /dev/null +++ b/.gitattributes | |||
| @@ -0,0 +1,41 @@ | |||
| 1 | * text=auto | ||
| 2 | |||
| 3 | *.adoc text | ||
| 4 | *.html text | ||
| 5 | *.in text | ||
| 6 | *.json text | ||
| 7 | *.md text | ||
| 8 | *.proto text | ||
| 9 | *.py text | ||
| 10 | *.rs text | ||
| 11 | *.service text | ||
| 12 | *.sh text | ||
| 13 | *.toml text | ||
| 14 | *.txt text | ||
| 15 | *.x text | ||
| 16 | *.yml text | ||
| 17 | |||
| 18 | *.raw binary | ||
| 19 | *.bin binary | ||
| 20 | *.png binary | ||
| 21 | *.jpg binary | ||
| 22 | *.jpeg binary | ||
| 23 | *.gif binary | ||
| 24 | *.ico binary | ||
| 25 | *.mov binary | ||
| 26 | *.mp4 binary | ||
| 27 | *.mp3 binary | ||
| 28 | *.flv binary | ||
| 29 | *.fla binary | ||
| 30 | *.swf binary | ||
| 31 | *.gz binary | ||
| 32 | *.zip binary | ||
| 33 | *.7z binary | ||
| 34 | *.ttf binary | ||
| 35 | *.eot binary | ||
| 36 | *.woff binary | ||
| 37 | *.pyc binary | ||
| 38 | *.pdf binary | ||
| 39 | *.ez binary | ||
| 40 | *.bz2 binary | ||
| 41 | *.swp binary \ No newline at end of file | ||
