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,25 @@
# git ls-remote
> Git 命令,用于列出基于名称或 URL 的远程仓库中的引用。
> 如果未提供名称或 URL则将使用配置的上游分支如果未配置上游分支则将使用远程 origin。
> 更多信息:<https://git-scm.com/docs/git-ls-remote>。
- 显示默认远程仓库中的所有引用:
`git ls-remote`
- 仅显示默认远程仓库中的头引用:
`git ls-remote --heads`
- 仅显示默认远程仓库中的标签引用:
`git ls-remote --tags`
- 根据名称或 URL 显示远程仓库中的所有引用:
`git ls-remote {{repository_url}}`
- 根据模式过滤显示远程仓库中的引用:
`git ls-remote {{repository_name}} "{{pattern}}"`