-
Notifications
You must be signed in to change notification settings - Fork 24
/
.gitattributes
49 lines (41 loc) · 962 Bytes
/
.gitattributes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#Tell git how to deal with line endings for specific files.
#See:
# man gitattributes
# https://help.github.com/articles/dealing-with-line-endings/
# http://stackoverflow.com/questions/170961/whats-the-best-crlf-carriage-return-line-feed-handling-strategy-with-git
#To start with, turn on auto text determination as a fall back.
* text=auto
# C++ source files.
*.cpp text diff=cpp
*.h text
# The makefile
Makefile text
# The executable.
nftsim binary
#Configuration files
*.conf text
# Documentation
Doxyfile text
*.md text
*.tex text diff=tex
*.txt text
*.lyx text
*.eps text
*.pdf binary
*.png binary
*.jpg binary
# Basic Matlab files.
*.m text
*.mat binary
*.fig binary
*.mex binary
# In case someone uses Visual Studio at some point.
*.sln text eol=crlf
*.csproj text eol=crlf
*.vbproj text eol=crlf
*.fsproj text eol=crlf
*.dbproj text eol=crlf
*.vcxproj text eol=crlf
*.vcxitems text eol=crlf
*.props text eol=crlf
*.filters text eol=crlf