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,24 @@
# git flow
> 一组 Git 扩展,用于提供高层次的仓库操作。
> 更多信息:<https://github.com/nvie/gitflow>。
- 在现有的 Git 仓库中初始化它:
`git flow init`
- 在基于 `develop` 的特性分支上开始开发:
`git flow feature start {{feature}}`
- 完成特性分支的开发,将其合并到 `develop` 分支并删除该特性分支:
`git flow feature finish {{feature}}`
- 将特性发布到远程服务器:
`git flow feature publish {{feature}}`
- 获取其他用户发布的特性:
`git flow feature pull origin {{feature}}`