美文网首页
mac git 自动补全 2020-08-20

mac git 自动补全 2020-08-20

作者: 陈海辉 | 来源:发表于2020-08-20 11:37 被阅读0次

    第一步(下载补全脚本)

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

    第二步(修改 .bash_profile)

    # 打开文件(没有创建  touch ~/.bash_profile)
    $ vi ~/.bash_profile
    
    # 粘贴下面的代码到文件的最后面
    if [ -f ~/.git-completion.bash ]; then
      source ~/.git-completion.bash
    fi
    

    第三步(执行 .bash_profile)

    $ source ~/.bash_profile
    

    相关文章

      网友评论

          本文标题:mac git 自动补全 2020-08-20

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