-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
.gitattributes
42 lines (39 loc) · 934 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
# Remove files for archives generated using `git archive`
.github export-ignore
.gitattributes export-ignore
.gitignore export-ignore
# Declaramos que archivos son binarios.
# Para que Git no los toque al hacer checkout y normalizar las cosas.
*.bin binary
*.exe binary
*.msv binary
*.frx binary
*.ico binary
*.png binary
*.gif binary
*.jpg binary
*.gif binary
*.bmp binary
*.mcl binary
*.dll binary
*.ind binary
*.con binary
*.bin binary
*.mid binary
*.mp3 binary
*.wav binary
*.ao binary
*.AO binary
*.ocx binary
*.OCX binary
*.map binary
*.inf binary
*.csm binary
*.ind binary
*.rao binary
*.xls binary
# Seteamos la codificación de los archivos en el working-directory
# TODOS los archivos utilizados por Visual Basic DEBEN USAR la codificación "windows-1252"
*.dat text eol=crlf working-tree-encoding=windows-1252
*.ini text eol=crlf working-tree-encoding=windows-1252
*.txt text eol=crlf working-tree-encoding=windows-1252