Update README with Git structure info
This commit is contained in:
@@ -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 仓库。
|
||||
|
||||
---
|
||||
|
||||
## 🤝 贡献指南
|
||||
|
||||
Reference in New Issue
Block a user