mac 下git命令自动补全设置

来源:互联网 发布:淘宝帐号怎么注销 编辑:程序博客网 时间:2024/06/03 21:01

下载 git-completion.bash

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

将该脚本自动运行

2. 在你的.bash_profile或者.bashrc,或者.profile上加入

if [ -f ~/.git-completion.bash ]; then

  . ~/.git-completion.bash

fi


0 0
原创粉丝点击