add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,20 @@
# cppclean
> 查找C++项目中的未使用代码。
> 更多信息:<https://github.com/myint/cppclean>。
- 在项目目录中运行:
`cppclean {{path/to/project}}`
- 在头文件位于`inc1/``inc2/`目录的项目中运行:
`cppclean {{path/to/project}} --include-path {{inc1}} --include-path {{inc2}}`
- 在特定文件`main.cpp`上运行:
`cppclean {{main.cpp}}`
- 在当前目录中运行排除“build”目录
`cppclean {{.}} --exclude {{build}}`