How do I print a list of my git aliases, i.e., something analogous to the bash alias command?
alias
Using git var and filtering only those that start with alias:
git var -l | grep -e "^alias"