Skip to content

Commit 86ee897

Browse files
committedApr 14, 2017
agregando carpeta build/ a .gitignore
1 parent 96ddeda commit 86ee897

File tree

1 file changed

+77
-0
lines changed

1 file changed

+77
-0
lines changed
 

‎.gitignore

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
# Compiled Object files
2+
*.slo
3+
*.lo
4+
*.o
5+
*.obj
6+
7+
# Precompiled Headers
8+
*.gch
9+
*.pch
10+
11+
# Compiled Dynamic libraries
12+
*.so
13+
*.dylib
14+
*.dll
15+
16+
# Fortran module files
17+
*.mod
18+
19+
# Compiled Static libraries
20+
*.lai
21+
*.la
22+
*.a
23+
*.lib
24+
25+
# Executables
26+
*.exe
27+
*.out
28+
*.app
29+
30+
# =========================
31+
# Operating System Files
32+
# =========================
33+
34+
# OSX
35+
# =========================
36+
37+
.DS_Store
38+
.AppleDouble
39+
.LSOverride
40+
41+
# Thumbnails
42+
._*
43+
44+
# Files that might appear on external disk
45+
.Spotlight-V100
46+
.Trashes
47+
48+
# Directories potentially created on remote AFP share
49+
.AppleDB
50+
.AppleDesktop
51+
Network Trash Folder
52+
Temporary Items
53+
.apdisk
54+
55+
# Windows
56+
# =========================
57+
58+
# Windows image file caches
59+
Thumbs.db
60+
ehthumbs.db
61+
62+
# Folder config file
63+
Desktop.ini
64+
65+
# Recycle Bin used on file shares
66+
$RECYCLE.BIN/
67+
68+
# Windows Installer files
69+
*.cab
70+
*.msi
71+
*.msm
72+
*.msp
73+
74+
# Windows shortcuts
75+
*.lnk
76+
77+
build/

0 commit comments

Comments
 (0)
Please sign in to comment.