最佳答案
我在 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。
还有更好的解决办法吗?