-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
55 lines (50 loc) · 1.69 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
# 语法
# 空行或是以#开头的行即注释行将被忽略。
# 可以在前面添加正斜杠/来避免递归,下面的例子中可以很明白的看出来与下一条的区别。
# 可以在后面添加正斜杠/来忽略文件夹,例如build/即忽略build文件夹。
# 可以使用!来否定忽略,即比如在前面用了*.apk,然后使用!a.apk,则这个a.apk不会被忽略。
# *用来匹配零个或多个字符,如*.[oa]忽略所有以".o"或".a"结尾,*~忽略所有以~结尾的文件(这种文件通常被许多编辑器标记为临时文件);[]用来匹配括号内的任一字符,如[abc],也可以在括号内加连接符,如[0-9]匹配0至9的数;?用来匹配单个字符。
# 忽略 .a 文件
#*.a
# 但否定忽略 lib.a, 尽管已经在前面忽略了 .a 文件
#!lib.a
# 仅在当前目录下忽略 TODO 文件, 但不包括子目录下的 subdir/TODO
#/TODO
# 忽略 build/ 文件夹下的所有文件
#build/
# 忽略 doc/notes.txt, 不包括 doc/server/arch.txt
#doc/*.txt
# 忽略所有的 .pdf 文件 在 doc/ directory 下的
#doc/**/*.pdf
# example
# Built application files
#*.apk
#*.ap_
# Files for the Dalvik VM
#*.dex
# Java class files
#*.class
# Generated files
#bin/
#gen/
#out/
# Gradle files
#.gradle/
#build/
# Local configuration file (sdk path, etc)
#local.properties
# Proguard folder generated by Eclipse
#proguard/
# Log Files
#*.log
# Android Studio Navigation editor temp files
#.navigation/
# Android Studio captures folder
#captures/
# Intellij
#*.iml
# Keystore files
# *.jks
# 忽略根目录下test文件夹及它的所有文件,但不包含其他目录下的test文件夹,比如:a/test(已亲测,是这样)
/test
node_modules