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 @@
# dvc 添加
> 将更改的文件添加到索引。
> 更多信息:<https://dvc.org/doc/command-reference/add>。
- 将单个目标文件添加到索引:
`dvc add {{path/to/file}}`
- 将目标目录添加到索引:
`dvc add {{path/to/directory}}`
- 递归添加给定目标目录中的所有文件:
`dvc add --recursive {{path/to/directory}}`
- 使用自定义的 `.dvc` 文件名添加目标文件:
`dvc add --file {{custom_name.dvc}} {{path/to/file}}`