mac git 自动补全

用mac and git 的小伙伴们又没有发现,mac自带的git的自动提示补全是否没有呢,如果要切一个分支名很长怎么办?,小编来告诉你!

1.如果没有安装HomeBrew的请看下面,安装了略过

 ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

安装过程中要输入一次密码

2.安装bash-completion

brew install bash-completion

#安装成功后

brew info bash-completion

#回提示Add the following line to your ~/.bash_profile:
#[ -f /usr/local/etc/bash_completion ] && . /usr/local/etc/bash_completion
#将这句话cp到.bash_profile 里面同时 在文件头加上source ~/.git-completion.bash

source ~/.bash_profile

3.如果tab键测试提示undefined的什么的,请检查git版本,我的当前版本为2.18.0

4.如果以上步骤都完成还是不行,请参考 git-completion 文件

    原文作者:darry
    原文地址: https://segmentfault.com/a/1190000015862109
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞