mac git 自动补全 2020-08-20
2020-08-20 本文已影响0人
陈海辉
第一步(下载补全脚本)
$ curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash
第二步(修改 .bash_profile)
# 打开文件(没有创建 touch ~/.bash_profile)
$ vi ~/.bash_profile
# 粘贴下面的代码到文件的最后面
if [ -f ~/.git-completion.bash ]; then
source ~/.git-completion.bash
fi
第三步(执行 .bash_profile)
$ source ~/.bash_profile