552 B
552 B
title, tags
| title | tags |
|---|---|
| List all git aliases | configuration,intermediate |
Prints a list of all git aliases.
- Use
git config -lto list all variables set in the configuration file. - Use the pipe operator (
|) to pipe the output andgrep aliasto only keep aliases. - Use the pipe operator (
|) to pipe the output andsed 's/^alias\.//g'to remove thealias.part from each alias.
git config -l | grep alias | sed 's/^alias\.//g'
git config -l | grep alias | sed 's/^alias\.//g'
# st=status
# co=checkout
# rb=rebase