1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 14:22:07 +02:00
tldr/pages/common/git-alias.md
2021-05-17 20:12:45 +02:00

17 lines
315 B
Markdown

# git alias
> Create shortcuts for Git commands.
> Part of `git-extras`.
> More information: <https://github.com/tj/git-extras/blob/master/Commands.md#git-alias>.
- List all aliases:
`git alias`
- Create a new alias:
`git alias "{{name}}" "{{command}}"`
- Search for an existing alias:
`git alias ^{{name}}`