Mac中让git自动补齐

2017-08-17  本文已影响7人  andforce
  1. 下载官方的补齐脚本:
curl -o ~/.git-completion.bash https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash
  1. 配置生效,在~/.bash_profile(没有就新建)中添加如下代码,之后重启Shell。
if [ -f ~/.git-completion.bash ]; then
    . ~/.git-completion.bash
fi

source ~/.git-completion.bash
上一篇下一篇

猜你喜欢

热点阅读