美文网首页
Mac git 命令行配置自动补齐

Mac git 命令行配置自动补齐

作者: kerven | 来源:发表于2019-07-11 16:45 被阅读0次

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 命令行配置自动补齐

      本文链接:https://www.haomeiwen.com/subject/yflahttx.html