forked from CS-SI/Orekit
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitattributes
56 lines (50 loc) · 2.21 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
# global setting: let git identify text files by itself
* text=auto
# general pattern for files known to be text: End Of Line transformations will be done
*.apt text
*.html text
*.java text
*.properties text
*.puml text
*.svg text
*.tle text
*.txt text
*.xml text
*.fml text
# general pattern for files known to not be text: no End Of Line transformations will be done
*.gz -text
*.zip -text
*.ico -text
*.xcf -text
*.jpg -text
*.odg -text
*.png -text
# specific data files known to be text: End Of Line transformations will be done
.gitattributes text
.gitignore text
.checkstyle text
src/*/resources/*/*.in text
src/*/resources/*/*/*.in text
src/*/resources/*/*.COF text
src/*/resources/*/*/*.COF text
src/*/resources/*/*.daily text
src/*/resources/*/*/*.daily text
src/*/resources/*/*.dat text
src/*/resources/*/*/*.dat text
src/*/resources/*/*.data text
src/*/resources/*/*/*.data text
src/*/resources/*/*.gfc text
src/*/resources/*/*/*.gfc text
src/*/resources/*/UTC-TAI.history text
src/*/resources/*/*/UTC-TAI.history text
src/*/resources/*/*.alm text
src/*/resources/*/*.al3 text
# specific data files known to not be text: no End Of Line transformations will be done
src/*/resources/*/unx*.405 -text
src/*/resources/*/*/unx*.405 -text
src/*/resources/*/unx*.406 -text
src/*/resources/*/*/unx*.406 -text
src/*/resources/*/lnx*.431 -text
src/*/resources/*/*/lnx*.431 -text
src/*/resources/inpop/*.dat -text
src/*/resources/gnss/ntrip/*.dat -text