This repository has been archived by the owner on Oct 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitattributes
71 lines (59 loc) · 2.48 KB
/
.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
###############################################################################
# https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes
# https://git-scm.com/book/ru/ch7-2.html
# https://git-scm.com/docs/gitignore#_pattern_format
#
###############################################################################
# Auto detect text files and perform LF normalization
###############################################################################
* text=auto
###############################################################################
# Set custom file attributes
#
# https://www.kernel.org/pub/software/scm/git/docs/gitattributes.html
###############################################################################
*.c diff=cpp
*.cc diff=cpp
*.h diff=cpp
*.cch diff=cpp
#Hint: LICENSE_N0 diff eol=lf
###############################################################################
# diff behavior for common document formats
#
# Convert binary document formats to text before diffing them.
# http://stackoverflow.com/a/28148416
###############################################################################
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
###############################################################################
# Set the merge strategies for project files
###############################################################################
**/.settings/* merge=ours
.cproject merge=ours
.nedfolders merge=ours
.oppbuildspec merge=ours
.project merge=ours
.oppfeaturestate merge=ours
.nedexclusions merge=ours
*/src/inet/features.h merge=ours
.qtenv.ini merge=ours
.qtenvrc merge=ours
.tkenvrc merge=ours
###############################################################################
# Exclude files from "git archive" and "Download ZIP" (GitHub, ...)
#
# https://feeding.cloud.geek.nz/posts/excluding-files-from-git-archive/
# https://habrahabr.ru/post/258891
# https://www.reddit.com/r/PHP/comments/2jzp6k/i_dont_need_your_tests_in_my_production/
###############################################################################
.gitignore export-ignore
.gitattributes export-ignore
LICENSE_N0 export-ignore