我在Mac上使用bash,别名之一是这样的
alias gitlog='git --no-pager log -n 20 --pretty=format:%h%x09%an%x09%ad%x09%s --date=short --no-merges'
但是当我这样做
:! gitlog
我懂了
/bin/bash: gitlog: command not found
我知道我可以在.gitconfig中添加这样的别名
[alias]
co = checkout
st = status
ci = commit
br = branch
df = diff
但是我不想将所有bash别名添加到.gitconfig。那不是DRY。
有更好的解决方案吗?