Skip to content

Commit 871316d

Browse files
committed
git: add .gitattributes
1 parent 330b302 commit 871316d

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

.gitattributes

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
#===============================================================================
2+
# Copyright 2019 Intel Corporation
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#===============================================================================
16+
17+
# Set the default behavior, in case people don't have core.autocrlf set.
18+
* text=auto
19+
20+
# Explicitly declare text files you want to always be normalized and converted
21+
# to native line endings on checkout.
22+
*.BSD text
23+
*.c text
24+
*.cc text
25+
*.cl text
26+
*.cmake text
27+
*.cpp text
28+
*.css text
29+
*.h text
30+
*.hpp text
31+
*.html text
32+
*.in text
33+
*.js text
34+
*.md text
35+
*.py text
36+
*.svg text
37+
*.txt text
38+
*.xml text
39+
*.pump text
40+
# Declare files that will always have OS specific line endings on checkout.
41+
*.vcxproj.user text eol=crlf
42+
*.sh text eol=lf
43+
44+
# Denote all files that are truly binary and should not be modified.
45+
*.jpg binary
46+
*.otf binary
47+
*.png binary
48+
*.woff binary

0 commit comments

Comments
 (0)