Skip to content

Commit 3f4558b

Browse files
committed
优化.gitignore并清理不必要的跟踪文件
- 优化.gitignore文件结构和分类 - 移除.gradle/构建缓存文件 - 移除init.gradle配置文件 - 添加更完整的IDE和构建相关忽略规则
1 parent 9f81bf4 commit 3f4558b

19 files changed

Lines changed: 47 additions & 25 deletions

.gitignore

Lines changed: 47 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,50 @@
1-
.vscode
2-
.idea
3-
vendor
1+
# IDE 配置文件
2+
.vscode/
3+
.idea/
4+
.cursor/
5+
6+
# 构建输出
7+
build/
8+
.gradle/
9+
out/
10+
*.jar
11+
!gradle/wrapper/gradle-wrapper.jar
12+
13+
# 依赖目录
14+
vendor/
15+
node_modules/
16+
17+
# 系统文件
418
.DS_Store
5-
origami
6-
node_modules
19+
Thumbs.db
20+
*.tmp
21+
*.log
22+
23+
# 项目特定
24+
origami/
25+
zy/
26+
zy-lsp/
27+
wails/
28+
29+
# 插件和扩展文件
730
*.vsix
8-
zy
9-
zy-lsp
1031
*.exe
11-
wails
12-
build
32+
33+
# 临时和缓存文件
34+
*.class
35+
*.iml
36+
*.ipr
37+
*.iws
38+
.attach_pid*
39+
40+
# Gradle 用户配置
41+
gradlew.bat
42+
!gradle/wrapper/
43+
44+
# 日志文件
45+
*.log
46+
logs/
47+
48+
# 本地环境变量
49+
.env
50+
.env.local
-39 Bytes
Binary file not shown.
-31.9 KB
Binary file not shown.
-139 KB
Binary file not shown.
-39 Bytes
Binary file not shown.

.gradle/8.4/dependencies-accessors/gc.properties

Whitespace-only changes.
-477 KB
Binary file not shown.
-39 Bytes
Binary file not shown.
-1 Bytes
Binary file not shown.
-31.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)