2
0

feat: enhance build and setup

This commit is contained in:
zhangsz
2024-12-26 19:03:28 +08:00
parent c1101563f3
commit c43c799ae0
3 changed files with 56 additions and 23 deletions

19
docs/99-reference/tips.md Normal file
View File

@@ -0,0 +1,19 @@
# Tips list
## git tips
git clone by ssh
```sh
git clone ssh://git@192.168.2.166:3122/WFC/build.wfc.git
git remote set-url origin git@192.168.2.166:3122/zhangsz/WFC/be.wfc.git
```
## docker tips
使用 Docker 日志清理工具
你可以使用 Docker 提供的 docker system prune 命令来清理未使用的数据,包括日志文件:
```sh
docker system prune -a
```