-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
53 lines (42 loc) · 1.22 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
# .gitignore
# 1) '/'を含まないパターンは、.gitignore以下にあるすべてのディレクトリにおいて、この名前のファイルとディレクトリを除外する。
# 2) 先頭もしくは中間に'/'を含むパターンは、.gitignoreを基点とする相対パスと判断され、マッチするファイルやディレクトリを除外する。
# 3) 末尾に'/'を含むパターンは、任意の階層にあるこの名前のディレクトリを除外する。
# 4) '*'はスラッシュ以外の任意も文字列にマッチする。
# 5) '?'はスラッシュ以外の任意の文字にマッチする。
# 6) '[a-zA-Z]'といった範囲指定もできる。
# 7) '**'は任意の階層のディレクトリにマッチする。
UserInterfaceState.xcuserstate
*.xcuserstate
# Exclude the build directory
build/*
depends/*
# Exclude temp nibs and swap files
*~.nib
*.swp
# Exclude OS X folder attributes
.DS_Store
# Exclude user-specific XCode 3 and 4 files
*.mode1
*.mode1v3
*.mode2v3
*.perspective
*.perspectivev3
*.pbxuser
*.xcworkspace
xcuserdata/
# python mypy cache
.mypy_cache/
*~
\#*\#
/vendor/
*.sqlite
.vscode/*
node_modules/
.npm/
*.log
__pycache__/
Debug/
Release/
.clangd/
.cache/