Uso bash su Mac e uno degli alias è così
alias gitlog='git --no-pager log -n 20 --pretty=format:%h%x09%an%x09%ad%x09%s --date=short --no-merges'
Tuttavia quando lo faccio
:! gitlog
ottengo
/bin/bash: gitlog: command not found
So di poter aggiungere alias come questo nel mio .gitconfig
[alias]
co = checkout
st = status
ci = commit
br = branch
df = diff
Tuttavia non voglio aggiungere tutti i miei alias bash a .gitconfig. Quello non è SECCO.
C'è una soluzione migliore?