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/ tools/
├── .gitignore # Git 忽略文件配置
├── README.md # 本文件
├── cutPic/ # 图片裁切工具 ├── cutPic/ # 图片裁切工具
│ ├── src/ │ ├── src/
│ │ └── main.rs │ │ └── main.rs
│ ├── Cargo.toml │ ├── Cargo.toml
│ ├── README.md │ ├── README.md
│ └── target/ │ └── target/ # (被 Git 忽略)
│ └── release/ │ └── release/
│ └── cutpic.exe │ └── cutpic.exe
@@ -234,23 +236,23 @@ tools/
│ │ └── main.rs │ │ └── main.rs
│ ├── Cargo.toml │ ├── Cargo.toml
│ ├── README.md │ ├── README.md
│ └── target/ │ └── target/ # (被 Git 忽略)
│ └── release/ │ └── release/
│ └── zip.exe │ └── zip.exe
── dexcel/ # Excel 读写工具 ── dexcel/ # Excel 读写工具
├── src/ ├── src/
│ └── main.rs │ └── main.rs
├── Cargo.toml ├── Cargo.toml
├── README.md ├── README.md
├── example.bat ├── example.bat
└── target/ └── target/ # (被 Git 忽略)
└── release/ └── release/
└── dexcel.exe └── dexcel.exe
└── README.md # 本文件
``` ```
**注意**: `target/` 目录和 `Cargo.lock` 文件已被添加到 `.gitignore`,不会被提交到 Git 仓库。
--- ---
## 🤝 贡献指南 ## 🤝 贡献指南