美文网首页
Mac os 下安装 git 以及设置 git 自动补全

Mac os 下安装 git 以及设置 git 自动补全

作者: saronic | 来源:发表于2018-03-20 21:15 被阅读15次

    mac os 下好像内置就安装了 git, 在终端下运行 git --version, 会显示 git version 2.14.3 (Apple Git-98)。这个 git 所在的位置:\usr\bin\git
    Do not uninstall Apple-distributed Git. You can leave it as it is and run another version by having it in a directory earlier in PATH environment variable.
    The easiest way to install another version on OS X would be to use Homebrew packet manager.
    you can run:
    brew install git && brew install bash-completion
    Add bash-completion to your ~/.bash_profile:

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

    使 .bash_profile 生效,运行 source .bash_profile

    相关文章

      网友评论

          本文标题:Mac os 下安装 git 以及设置 git 自动补全

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