24 lines
453 B
Markdown
24 lines
453 B
Markdown
# git 帮助
|
|
|
|
> 显示有关 Git 的帮助信息。
|
|
> 更多信息:<https://git-scm.com/docs/git-help>。
|
|
|
|
- 显示有关特定 Git 子命令的帮助:
|
|
|
|
`git help {{subcommand}}`
|
|
|
|
- 在网页浏览器中显示特定 Git 子命令的帮助:
|
|
|
|
`git help --web {{subcommand}}`
|
|
|
|
- 显示所有可用 Git 子命令的列表:
|
|
|
|
`git help --all`
|
|
|
|
- 列出可用的指南:
|
|
|
|
`git help --guide`
|
|
|
|
- 列出所有可能的配置变量:
|
|
|
|
`git help --config` |