mac代码自动补全git上
Posted gaochaoweino
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mac代码自动补全git上相关的知识,希望对你有一定的参考价值。
# 1. 安装bash-completion
$ brew install bash-completion 卸载使用$brew uninstall bash-completion $ brew tap homebrew/completions
# 2. 在用户目录.bash_profile添加如下脚本
if [ -f $(brew –prefix)/etc/bash_completion ]; then
. $(brew –prefix)/etc/bash_completion
fi
# 3. 增加Git命令补全
```
cd/usr/local/opt/bash?completion/etc/bashcompletion.dcd/usr/local/opt/bash?completion/etc/bashcompletion.d curl -L -O https://raw.github.com/git/git/master/contrib/completion/git-completion.bash
brewunlinkbash?completionbrewunlinkbash?completion brew link bash-completion
```
# 4. 以上步骤做完,即可实现git命令参数补全功能
$ git chec # 按tab键补全参数
$ git checkout dev #假如有分支名为dev-master,tab键之后会自动补全分支名
以上是关于mac代码自动补全git上的主要内容,如果未能解决你的问题,请参考以下文章