Hi, On Thu, 25 Jun 2009, Wincent Colaiuta wrote: > El 25/6/2009, a las 17:59, Tim Visher escribió: > > > Can git display a list of all of your current aliases like bash's > > `alias` command? > > Something like: > > git config --list | grep alias Or without a pipe (so you catch the exit status of git config easily): git config --get-regexp ^alias\\. Ciao, Dscho