1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 05:22:09 +02:00

git-{brv, bug, bugreport}: add Chinese translation (#16066)

This commit is contained in:
Ziqiang Wu 2025-04-12 15:53:51 +08:00 committed by GitHub
parent 792ff72855
commit 8c8d178ce5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 58 additions and 0 deletions

View file

@ -0,0 +1,9 @@
# git brv
> 按最后提交日期排序显示分支列表。
> 属于 `git-extras`的一部分。
> 更多信息:<https://github.com/tj/git-extras/blob/master/Commands.md#git-brv>.
- 列出所有分支,显示日期、最新提交哈希和提交信息:
`git brv`

View file

@ -0,0 +1,33 @@
# git bug
> 一个使用 Git 内部存储的分布式问题追踪器,不会在项目中添加额外文件。
> 您可以像提交和分支一样,将问题提交到与他人交互的同一个 Git 远程仓库。
> 更多信息:<https://github.com/MichaelMure/git-bug/blob/master/doc/md/git-bug.md>.
- 创建新身份:
`git bug user create`
- 创建新问题:
`git bug add`
- 推送新问题条目到远程仓库:
`git bug push`
- 拉取更新:
`git bug pull`
- 列出已有问题:
`git bug ls`
- 使用查询条件筛选和排序问题:
`git bug ls "{{状态}}:{{open}} {{排序}}:{{edit}}"`
- 按文本内容搜索问题:
`git bug ls "{{搜索查询}}" baz`

View file

@ -0,0 +1,16 @@
# git bugreport
> 收集系统和用户的调试信息,生成文本文件以帮助报告 Git 中的问题。
> 更多信息:<https://git-scm.com/docs/git-bugreport>.
- 在当前目录创建新的问题报告文件:
`git bugreport`
- 在指定目录创建新的问题报告文件(如目录不存在则自动创建):
`git bugreport {{[-o|--output-directory]}} {{path/to/directory}}`
- 使用指定格式的时间戳后缀创建问题报告文件( `strftime` 格式):
`git bugreport {{[-s|--suffix]}} {{%m%d%y}}`