Mac git 命令自动提示

  • Post author:
  • Post category:其他


1、首先安装配置Homebrew(注:如果已经安装过就跳过):

在终端输入如下命令:

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

2、安装bash-completion

在终端输入如下命令:

brew install bash-completion

3、拷贝一下内容到~/.bash_profile(如果没有该文件,新建一个)

if [ -f $(brew --prefix)/etc/bash_completion ]; then
    . $(brew --prefix)/etc/bash_completion
  fi

4、执行一下命令

curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash

5、拷贝一下内容添加到~/.bash_profile

source ~/.git-completion.bash

6、执行一下命令

source ~/.bash_profile



版权声明:本文为laizidiyu151原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。