mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 03:24:04 +00:00
23 lines
406 B
Plaintext
23 lines
406 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# git alias
|
|
|
|
> Create shortcuts for Git commands.
|
|
> Part of `git-extras`.
|
|
> More information: <https://github.com/tj/git-extras/blob/main/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}}`
|