美文网首页
Mac中让git自动补齐

Mac中让git自动补齐

作者: andforce | 来源:发表于2017-08-17 12:30 被阅读7次
    1. 下载官方的补齐脚本:
    curl -o ~/.git-completion.bash https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash
    
    1. 配置生效,在~/.bash_profile(没有就新建)中添加如下代码,之后重启Shell。
    if [ -f ~/.git-completion.bash ]; then
        . ~/.git-completion.bash
    fi
    
    source ~/.git-completion.bash
    

    相关文章

      网友评论

          本文标题:Mac中让git自动补齐

          本文链接:https://www.haomeiwen.com/subject/pabgrxtx.html