gpt4 book ai didi

macos - 警告 : Your version of git is 1. 9.3。存在严重的安全漏洞

转载 作者:太空狗 更新时间:2023-10-29 12:56:05 25 4
gpt4 key购买 nike

我在部署到 Heroku 期间收到关于 git 1.9.3 严重安全漏洞的警告

我尝试通过 homebrew 更新 git,但发现 git 最初并不是通过 homebrew 安装的

然后我通过 Homebrew 软件安装了它

brew update
brew install git

==> Downloading https://downloads.sf.net/project/machomebrew/Bottles/git-2.2.1.mavericks.bottle.tar.gz
######################################################################## 100.0%
==> Pouring git-2.2.1.mavericks.bottle.tar.gz
==> Caveats
The OS X keychain credential helper has been installed to:
/usr/local/bin/git-credential-osxkeychain

The "contrib" directory has been installed to:
/usr/local/share/git-core/contrib

Bash completion has been installed to:
/usr/local/etc/bash_completion.d

zsh completion has been installed to:
/usr/local/share/zsh/site-functions
==> Summary
🍺 /usr/local/Cellar/git/2.2.1: 1356 files, 31M

在那之后,当我检查 git 版本时,它保持不变

⇒  git --version   
git version 1.9.3 (Apple Git-50)

在我看来 homebrew 在文件夹 /usr/local/Cellar/git/2.2.1 中安装了 git

最后是我的问题:我应该怎么做才能开始使用 homebrew git 而不是原来的 git

最佳答案

⇒  which git
/usr/bin/git

⇒ git --version
git version 1.9.3 (Apple Git-50)

你需要在/usr/bin/git 重命名原来的git,例如

sudo mv /usr/bin/git /usr/bin/git-original

现在再次检查位置和版本

⇒  which git
/usr/local/bin/git

⇒ git --version
git version 2.2.1

为向后兼容添加一个符号链接(symbolic link)(如果您的 IDE 使用直接定位到 git)

sudo ln -s /usr/local/bin/git /usr/bin/git

关于macos - 警告 : Your version of git is 1. 9.3。存在严重的安全漏洞,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27646133/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com