Files
30-seconds-of-code/snippets/git/s/list-aliases.md
Angelos Chalaris 4d0316a062 Update covers
2023-05-07 22:25:00 +03:00

629 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
List all git aliases snippet git
configuration
coffee-float 2021-04-13T21:10:59+03:00

Prints a list of all git aliases.

  • Use git config -l to list all variables set in the configuration file.
  • Use the pipe operator (|) to pipe the output and grep alias to only keep aliases.
  • Use the pipe operator (|) to pipe the output and sed 's/^alias\.//g' to remove the alias. 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