mac下git命令自动补全

本文亲测可用。
1、打开网页,https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash
全选,复制内容。
2、在~/.bash_profile文件(如果没有需要创建)中加入以下内容即可生效

if  \[ -f ~/.git-completion.bash \]; then
    . ~/.git-completion.bash   
fi

3、在~/.git-completion.bash(如果没有需要创建)中加入第一步复制的内容
4、分别执行 source ~/.bash_profile, source ~/.git-completion.bash
5、执行chmod a+x ~/.git-completion.bash
6、重启命令行工具~~~~

你可能感兴趣的:(macos,git)