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 @@
# dolt checkout
> 切换工作树或表到一个分支或提交。
> 更多信息请访问: <https://docs.dolthub.com/cli-reference/cli#dolt-checkout>。
- 切换到一个分支:
`dolt checkout {{branch_name}}`
- 撤销未暂存的表变更:
`dolt checkout {{table}}`
- 创建新分支并切换到该分支:
`dolt checkout -b {{branch_name}}`
- 基于指定提交创建新分支并切换到该分支:
`dolt checkout -b {{branch_name}} {{commit}}`