X Tutup
Skip to content

Commit a403d2d

Browse files
committed
Added the .gitignore file.
1 parent a92313c commit a403d2d

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

.gitignore

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# A hidden file created by the Mac OS X Finder.
2+
.DS_Store
3+
4+
# Backup files left behind by the Emacs editor.
5+
*~
6+
7+
# Lock files used by the Emacs editor.
8+
.\#*
9+
10+
# Temporary files used by the vim editor.
11+
.*.swp
12+
13+
# Temporary files used by TestMate
14+
._*
15+
16+
# Backup files left behind by various editors
17+
*.bak
18+
19+
# build directories
20+
**/build/*
21+
build/*
22+
23+
# XCode user data
24+
**.pbxuser
25+
**.mode?v?
26+
**.perspectivev?
27+
**.xcuserstate
28+
**.xccheckout
29+
**/xcuserdata/*
30+
31+
# AppCode settings
32+
**/.idea/*
33+
34+
# documentation
35+
**.docset/*
36+
**/debug.txt
37+
**/html/*
38+
39+
# for those crazies using svn and hg at the same time
40+
*.svn*
41+
42+
# Doxygen tagfile output
43+
**/core-plot-tags.xml
44+
**/core-plot-touch-tags.xml

0 commit comments

Comments
 (0)
X Tutup