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-submodule>。
- 安装一个仓库的指定子模块:
`git submodule update --init --recursive`
- 将一个 Git 仓库作为子模块添加:
`git submodule add {{repository_url}}`
- 将一个 Git 仓库作为子模块添加到指定目录:
`git submodule add {{repository_url}} {{path/to/directory}}`
- 更新每个子模块到其最新提交:
`git submodule foreach git pull`