Mac git 命令行配置自动补齐

1.安装brew

2.使用brew安装bash-completion(命令行输入:brew install bash-completion)

3.使用brew info bash-completion查看bash-completion的安装位置



将[[ -r "/usr/local/etc/profile.d/bash_completion.sh" ]] && . "/usr/local/etc/profile.d/bash_completion.sh"(不同环境不一样,根据自己的来)这部分添加到环境变量~/.bash_profile中

vim ~/.bash_profile


图中红色部分

4.确认自己git版本号(git version 2.19.2)

git --version

去https://raw.githubusercontent.com/git/git/v2.19.2/contrib/completion/git-completion.bash下载对应自己版本号的脚本

5.将git-completion.bash拷贝到/usr/local/opt/bash-completion/etc/bash_completion.d下面

执行:

brew unlink bash-completion

brew link bash-completion

重启终端完成

你可能感兴趣的:(Mac git 命令行配置自动补齐)