提交 | 用户 | 时间
|
58d006
|
1 |
############################################ |
A |
2 |
## Generic System Ignores |
|
3 |
syntax: glob |
|
4 |
|
|
5 |
!.gitignore |
|
6 |
# build directories and files |
|
7 |
#hg syntax |
|
8 |
target/**.* |
|
9 |
#git syntax |
|
10 |
target/ |
|
11 |
dist/**.* |
|
12 |
**/build/* |
|
13 |
build/* |
|
14 |
*.pyc |
|
15 |
# Maven |
|
16 |
release.properties |
|
17 |
#Eclipse |
|
18 |
.settings/*.** |
|
19 |
.classpath |
|
20 |
.project |
|
21 |
# Netbeans |
|
22 |
nb-configuration.xml |
|
23 |
nbactions.xml |
|
24 |
# Backup files left behind by the Emacs editor. |
|
25 |
*~ |
|
26 |
# Lock files used by the Emacs editor. |
|
27 |
.\#* |
|
28 |
# Temporary files used by TestMate |
|
29 |
._* |
|
30 |
# XCode user data |
|
31 |
**.pbxuser |
|
32 |
**.mode?v? |
|
33 |
**.perspectivev? |
|
34 |
# documentation |
|
35 |
**.docset/* |
|
36 |
# for those crazies using svn and hg at the same time |
|
37 |
*.svn* |
|
38 |
# Random OS stuff |
|
39 |
.DS_Store |
|
40 |
Thumbs.db |
|
41 |
# temporary folders |
|
42 |
syntax: regexp |
|
43 |
.*/te?mp/.* |
|
44 |
# Temporary files used by the vim editor. |
|
45 |
.*.swp |
|
46 |
/nbproject/private/ |
|
47 |
/nbproject/ |