1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:05:59 +02:00

git-alias: add page (#5979)

This commit is contained in:
CleanMachine1 2021-05-17 19:12:45 +01:00 committed by GitHub
parent 71340ccab7
commit 15ec11454f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

17
pages/common/git-alias.md Normal file
View file

@ -0,0 +1,17 @@
# 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}}`