diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-03-09 19:39:13 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2017-03-09 19:41:32 +0100 |
commit | 07b57cfef9e23a033e92cf4a7c3fbe6686229c3b (patch) | |
tree | d90b4a2d0af7e40da2296af265d6ac3746482a52 /.gitattributes | |
parent | 9c5daad19c850d852f2e78ca571ad199362c0ffe (diff) | |
download | Shaarli-07b57cfef9e23a033e92cf4a7c3fbe6686229c3b.tar.gz Shaarli-07b57cfef9e23a033e92cf4a7c3fbe6686229c3b.tar.zst Shaarli-07b57cfef9e23a033e92cf4a7c3fbe6686229c3b.zip |
Prevent git from messing with font files
This should remove font related errors in browser debig consoles
Diffstat (limited to '.gitattributes')
-rw-r--r-- | .gitattributes | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.gitattributes b/.gitattributes index 059fbb18..82f37602 100644 --- a/.gitattributes +++ b/.gitattributes | |||
@@ -10,10 +10,16 @@ | |||
10 | *.php text diff=php | 10 | *.php text diff=php |
11 | Dockerfile text | 11 | Dockerfile text |
12 | 12 | ||
13 | # Do not alter images nor minified scripts | 13 | # Do not alter images nor minified scripts nor fonts |
14 | *.ico binary | 14 | *.ico binary |
15 | *.jpg binary | 15 | *.jpg binary |
16 | *.png binary | 16 | *.png binary |
17 | *.svg binary | ||
18 | *.otf binary | ||
19 | *.eot binary | ||
20 | *.woff binary | ||
21 | *.woff2 binary | ||
22 | *.ttf binary | ||
17 | *.min.css binary | 23 | *.min.css binary |
18 | *.min.js binary | 24 | *.min.js binary |
19 | 25 | ||