-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
127 lines (111 loc) · 1.83 KB
/
.gitignore
File metadata and controls
127 lines (111 loc) · 1.83 KB
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
################################################################################
# CapazOS / Xcode / Swift + freestanding kernel build artifacts
################################################################################
# --- macOS ---
.DS_Store
.AppleDouble
.LSOverride
._*
.Spotlight-V100
.Trashes
.fseventsd
# --- Xcode / SwiftPM derived output ---
# Primary Xcode derived products (prefer this over ignoring per-project paths)
DerivedData/
*.xcworkspace/xcuserdata/
*.xcodeproj/xcuserdata/
*.xcuserstate
*.xccheckout
*.xcscmblueprint
# User-specific settings
xcuserdata/
*.moved-aside
# Build products
build/
Build/
Derived/
# Indexing / symbolication
*.dSYM
*.dSYM.zip
*.dSYM.tar
*.bcsymbolmap
# Swift / compilation caches
.swiftpm/
Package.resolved
*.swiftmodule
*.swiftdoc
*.swiftsourceinfo
ModuleCache.noindex/
SDKStatCaches.noindex/
CompilationCache.noindex/
SourcePackages/
XCBuildData/
# Xcode intermediate build dirs (when someone commits them by accident)
*.xcbuilddata
*.xcresult
*.ipa
*.app
*.framework
*.xcframework
*.appex
# --- Swift Development Snapshot toolchains / local overrides ---
# If your repo has any local toolchain wrapper scripts or downloaded toolchains
*.xctoolchain/
.toolchains/
# --- CLion / VSCode / other editors ---
.vscode/
.idea/
*.iml
# --- C/ASM build artifacts (kernel + boot) ---
*.o
*.a
*.so
*.dylib
*.dll
*.lo
*.la
*.slo
*.d
*.dep
*.map
*.lst
*.sym
*.elf
*.bin
*.img
*.iso
*.hex
*.out
*.log
# Common “output” dirs used by kernel projects
out/
dist/
tmp/
temp/
# --- QEMU / debug artifacts ---
qemu.log
qemu-*.log
gdb.txt
gdb.log
# --- Archives / exports ---
*.zip
*.tar
*.tar.gz
*.tgz
*.7z
# --- Coverage / profiling ---
*.gcno
*.gcda
*.profraw
*.profdata
# --- Secrets / local config ---
.env
.env.*
*.local
config.local.*
secrets.*
*.key
*.pem
# --- If you generate DTBs/images locally ---
*.dtb
*.dts