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 @@
# git 工作树
> 管理附加到同一存储库的多个工作树。
> 更多信息:<https://git-scm.com/docs/git-worktree>。
- 创建一个新目录,并将指定的分支签出到该目录中:
`git worktree add {{path/to/directory}} {{branch}}`
- 创建一个新目录,并将新分支签出到该目录中:
`git worktree add {{path/to/directory}} -b {{new_branch}}`
- 列出所有附加到该存储库的工作目录:
`git worktree list`
- 删除一个工作树(在删除工作树目录后):
`git worktree prune`