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,28 @@
# dolt config
> 读取和写入本地每个仓库和全局每个用户Dolt 配置变量。
> 更多信息:<https://docs.dolthub.com/cli-reference/cli#dolt-config>。
- 列出所有本地和全局配置选项及其值:
`dolt config --list`
- 显示本地或全局配置变量的值:
`dolt config --get {{name}}`
- 修改本地配置变量的值,如果不存在则创建它:
`dolt config --add {{name}} {{value}}`
- 修改全局配置变量的值,如果不存在则创建它:
`dolt config --global --add {{name}} {{value}}`
- 删除本地配置变量:
`dolt config --unset {{name}}`
- 删除全局配置变量:
`dolt config --global --unset {{name}}`