我在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。这不是干的。
有更好的解决方案吗?
Bash不加载你的.bashrc,除非它是交互式的。使用
原文链接:https://www.f2er.com/bash/392144.html:set shellcmdflag=-ic
使Vim的:! shell的行为就像你的命令提示符。