-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
99 lines (83 loc) · 1.49 KB
/
.gitignore
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#忽略全部*.class字节码文件
*.class
# mac / IOS settings
.DS_Store
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.xcbkptlist
*.xcuserstate
*.xcuserdatad
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear on external disk
.Spotlight-V100
.Trashes
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
#针对移动端开发忽略.mtj.tmp/目录下所有文件
.mtj.tmp/
#忽略各类打包文件
#此处列举*.jar/*.war/*.ear/*.zip四类打包文件
*.jar
*.war
*.ear
*.zip
#增加忽略两类压缩文件
*.tar.gz
*.tar
#忽略target/目录下所有文件
target/
#忽略subDir/target/目录下所有文件
#因为maven工程有parent和children之分
**/target/
#忽略virtual machine crash logs文件
hs_err_pid*
#忽略日志文件
#日志文件也可能是*.tar.gz或*.tar压缩处理过的
*.log
*.tar.gz.log
*.tar.log
#忽略掉临时文件
*.bak
#忽略eclipse项目描述文件
*.classpath
*.project
*.prefs
#忽略svn文件
#忽略.svn/目录下全部文件,但是不包括subDir/.svn/目录下文件
.svn/
#忽略subDir目录下所有带.svn/目录的文件
**/.svn/
#忽略idea项目文件
*.iml
*.ipr
*.iws
**/.idea/
**/.idea/workspace.xml
**/.idea/libraries
#忽略可执行文件
*.bat
*.exe
**/bin/
*.pyc
#忽略PB生成代码
**/pb/com