-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.gitignore
More file actions
125 lines (106 loc) · 1.58 KB
/
.gitignore
File metadata and controls
125 lines (106 loc) · 1.58 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
# =====================================================
# Termux Flutter WSL .gitignore
# =====================================================
# ----- 大型構建產物 (不需要版本控制) -----
flutter/
sysroot/
release/
depot_tools/
*.deb
out/
# ----- 臨時文件存檔 -----
_archive/
# ----- 參考專案 -----
reference_termux_flutter/
# ----- 舊版子目錄 (遷移後移除) -----
termux-flutter/
# ----- Python 相關 -----
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
.eggs/
*.manifest
*.spec
# ----- 日誌文件 -----
*.log
*.txt
!README*.txt
!requirements.txt
# ----- IDE / 編輯器 -----
.vscode/
.idea/
*.swp
*.swo
*~
# ----- 系統文件 -----
.DS_Store
Thumbs.db
desktop.ini
# ----- Node.js (如果有) -----
node_modules/
# ----- 構建工具緩存 -----
.cache/
.ninja_log
.ninja_deps
.gclient
.omx/
.omc/
# ----- 中間產物 -----
*.o
*.a
*.so.*
*.dSYM/
# ----- 截圖與臨時測試資源 -----
*.png
*.jpg
*.jpeg
*.gif
# ----- 大型二進制與壓縮包 -----
*.zip
*.tar.gz
*.tar.xz
*.bin
*.7z
*.rar
# ----- 大型 Flutter 構建產物 -----
gen_snapshot
gen_snapshot_profile
impellerc
data.tar.xz
# ----- 其他 -----
nul
# ----- 敏感文件 -----
devices.md
.claude/
# ----- 臨時開發腳本 -----
fix_*.sh
test_*.sh
check_*.sh
wsl_*.sh
e2e_*.sh
run_*.sh
build_*.sh
!build.py
gradle_*.sh
strace_*.sh
copy_*.sh
setup_*.sh
device_*.sh
find_*.sh
patch.sh
install.sh
run.sh
full_e2e.sh
clean_e2e_test.sh
# ----- 臨時二進制 / snapshot -----
*.snapshot
*.apk
*.b64
gen_snapshot_*
temp_*.*
# ----- 臨時 PowerShell 腳本 -----
*.ps1
!scripts/**/*.ps1