Update README with Git structure info

This commit is contained in:
macro
2026-04-25 00:02:16 +08:00
parent 8fb110adbd
commit f3df0a85da
+15 -13
View File
@@ -220,12 +220,14 @@ zip docs-backup.zip backup-log.xlsx -n complete-backup.zip -v
```
tools/
├── .gitignore # Git 忽略文件配置
├── README.md # 本文件
├── cutPic/ # 图片裁切工具
│ ├── src/
│ │ └── main.rs
│ ├── Cargo.toml
│ ├── README.md
│ └── target/
│ └── target/ # (被 Git 忽略)
│ └── release/
│ └── cutpic.exe
@@ -234,23 +236,23 @@ tools/
│ │ └── main.rs
│ ├── Cargo.toml
│ ├── README.md
│ └── target/
│ └── target/ # (被 Git 忽略)
│ └── release/
│ └── zip.exe
── dexcel/ # Excel 读写工具
├── src/
│ └── main.rs
├── Cargo.toml
├── README.md
├── example.bat
└── target/
└── release/
└── dexcel.exe
└── README.md # 本文件
── dexcel/ # Excel 读写工具
├── src/
│ └── main.rs
├── Cargo.toml
├── README.md
├── example.bat
└── target/ # (被 Git 忽略)
└── release/
└── dexcel.exe
```
**注意**: `target/` 目录和 `Cargo.lock` 文件已被添加到 `.gitignore`,不会被提交到 Git 仓库。
---
## 🤝 贡献指南