Mac系统实现git命令自动补全
Posted web喵神的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac系统实现git命令自动补全相关的知识,希望对你有一定的参考价值。
当我第一次使用mac电脑的时候,由于我是从事软件开发的程序员,所以必须经常要使用到git,然而发现在mac系统下,git不能实现命令的自动补全,然后网上查找资料,找到了解决办法,终于可以实现了git命令的自动补全功能,现在分享如下。
需要购买阿里云产品和服务的,点击此链接领取优惠券红包,优惠购买哦,领取后一个月内有效: https://promotion.aliyun.com/ntms/yunparter/invite.html?userCode=fp9ccf07
安装Homebrew
首先安装配置Homebrew(注:如果已经安装过就跳过):
HomeBrew的网址:https://brew.sh/index_zh-cn.html
在终端输入如下命令:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
然后就会开始安装,中间会提示输入系统用户的密码,安装成功后会有如下提示:
此时可以在命令行中输入命令brew进行测试,可以看到如下结果,说明安装成功。
正式开始
一 、安装bash-completion
bash-completion 如果按照过了,请跳过步骤
$ brew install bash-completion ### 安装完成以后 查看 $ brew info bash-completion ### 会输出类似以下内容 ==> Caveats Add the following lines to your ~/.bash_profile: if [ -f $(brew --prefix)/etc/bash_completion ]; then . $(brew --prefix)/etc/bash_completion fi Homebrew\'s own bash completion script has been installed to /usr/local/etc/bash_completion.d
将if…then…那一句添加到~/.bash_profile(如果没有该文件,新建一个)
重启终端,以上为安装bash-completion部分。
二、拷贝文件、设置路径
访问下面网站
https://github.com/git/git.git
找到”contrib/completion/”目录下的git-completion.bash ,然后点击编辑,拷贝其内容,复制到文本文件,保存为 git-completion.bash 文件
然后将文件用命令拷贝到 ~/ 目录下
$ cp xxx/git-completion.bash ~/.git-completion.bash
xxx 为文件所在目录,注意拷贝后的文件名称为 .git-completion.bash
在~/.bashrc文件(该目录下如果没有,新建一个)中添加下边的内容:
source ~/.git-completion.bash
三、 启动: 终端输入
$ source ~/.git-completion.bas
注:不输入的话,不会起作用
将下面这句话 添加到~/.bash_profile
if [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
fi
不添加想要补全起作用,每次都需要执行
source ~/.git-completion.bash
补全才能生效
注:原文地址:http://blog.csdn.net/chenbifeng/article/details/51570606
以上是关于Mac系统实现git命令自动补全的主要内容,如果未能解决你的问题,请参考以下文章