mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
17 lines
333 B
Markdown
17 lines
333 B
Markdown
# git alias
|
|
|
|
> 为 Git 命令创建快捷方式。
|
|
> 属于 `git-extras`的一部分
|
|
> 更多信息:<https://github.com/tj/git-extras/blob/master/Commands.md#git-alias>.
|
|
|
|
- 列出所有别名
|
|
|
|
`git alias`
|
|
|
|
- 为命令创建一个别名
|
|
|
|
`git alias "{{别名}}" "{{命令}}"`
|
|
|
|
- 搜索一个现有的别名
|
|
|
|
`git alias ^{{别名}}`
|