【macOS】brew update无法正常使用解决方案(Warning: No remote 'origin' in..., skipping update! )

2022/7/14 6:21:33

本文主要是介绍【macOS】brew update无法正常使用解决方案(Warning: No remote 'origin' in..., skipping update! ),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

✨Homebrew

关于 Homebrew 介绍详见如下博客

【macOS】Homebrew & Homebrew cask macOS软件包管理神器 - 双份浓缩馥芮白 - 博客园 (cnblogs.com)


✨brew update无法正常使用

报错提示如下:

在之前的博客中有完整的问题排查过程并且给出了最终的解决方案

详见:【macOS】Git 2.35.2修复安全漏洞导致brew无法正常使用解决方案 - 双份浓缩馥芮白 - 博客园 (cnblogs.com)


✨解决方案

运行如下命令添加 Git 信任目录homebrew-corehomebrew-caskhomebrew-services

git config --global --add safe.directory /opt/homebrew/Library/Taps/homebrew/homebrew-core
git config --global --add safe.directory /opt/homebrew/Library/Taps/homebrew/homebrew-cask
git config --global --add safe.directory /opt/homebrew/Library/Taps/homebrew/homebrew-services

再次运行brew update

brew update 已经可以正常运行


同样如果要取消之前添加的 Git 信任目录运行如下命令即可

git config --global --unset safe.directory /opt/homebrew/Library/Taps/homebrew/homebrew-core
git config --global --unset safe.directory /opt/homebrew/Library/Taps/homebrew/homebrew-cask
git config --global --unset safe.directory /opt/homebrew/Library/Taps/homebrew/homebrew-services

运行如下命令可查看 Git 全局配置

git config --global --list

⭐转载请注明出处

本文作者:双份浓缩馥芮白

原文链接:https://www.cnblogs.com/Flat-White/p/16475993.html

版权所有,如需转载请注明出处。



这篇关于【macOS】brew update无法正常使用解决方案(Warning: No remote 'origin' in..., skipping update! )的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程