解决:mac brew install xx 出现 fatal: not in a git directory Error: Command failed with exit 128: git

这篇具有很好参考价值的文章主要介绍了解决:mac brew install xx 出现 fatal: not in a git directory Error: Command failed with exit 128: git。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

使用brew下载安装包时not in a git directory,个人使用,1024程序员节

wshanshi:这是一个简单的问题总结记录…

一、异常信息

使用brew install 时发现报了一个错:fatal: not in a git directory Error: Command failed with exit 128: git,如下图所示。

使用brew下载安装包时not in a git directory,个人使用,1024程序员节

二、解决方法

brew -v 可查看提示,To add an exception for this directory。提示添加安全目录(–add safe.directory)

使用brew下载安装包时not in a git directory,个人使用,1024程序员节

执行上述提示命令即可:文章来源地址https://www.toymoban.com/news/detail-626849.html

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

到了这里,关于解决:mac brew install xx 出现 fatal: not in a git directory Error: Command failed with exit 128: git的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Mac终端出现 brew command not found 解决

    MacOS 上您需要安装 unrar 以支持 PaddlePaddle,可以使用命令 brew install unrar 执行命令后发现 brew 不存在 输入命令: jimmy@MacBook-Pro ~ % /bin/zsh -c \\\"$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)\\\" 请输入序号: 1 -是否现在开始执行脚本(N/Y) Y 输入开机密码 安装完成后,

    2024年02月02日
    浏览(61)
  • mac 终端 报-bash: brew: command not found 解决办法以及通过 brew install scrcpy 安装步骤

    之前有安装过HomeBrew,但最近执行 brew install scrcpy 时报 -bash: brew: command not found   通过修改~/.zshrc ,~/.zprofile 配置文件,在其中增加环境变量 编辑~/.zshrc 文件,增加以下环境变量 #brew config export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles/bottle 最后 source  ~/.zshr

    2024年02月14日
    浏览(52)
  • 解决fatal: not a git repository (or any of the parent directories): .git问题

    在现代软件开发中,版本控制系统扮演着至关重要的角色,Git作为其中最流行和强大的工具之一,为我们提供了高效的代码管理和团队协作能力。然而,在使用Git的过程中,难免会遇到各种问题。其中,\\\"fatal: not a git repository (or any of the parent directories): .git\\\"是一个常见的错误,

    2024年02月08日
    浏览(47)
  • 解决git提示fatal: not a git repository (or any of the parent directories): .git

    1、创建分支时提示:not a git repository E:myprojectgit checkout -b zhenzhu fatal: not a git repository (or any of the parent directories): .git 2、怎么办? git init--》git status--》git checkout -b test20230217--》成功 3、为什么? 一般是没有初始化git本地版本管理仓库,使用init命令行初始化,再status查看状态

    2024年02月03日
    浏览(55)
  • 解决 git 问题:fatal: not a git repository (or any of the parent directories): .git

    @[TOC](解决 git 问题:fatal: not a git repository (or any of the parent directories): .git) 今天使用 git 增加新的远程主机的时候,发现报下面这个错: fatal: not a git repository (or any of the parent directories): .git ,如图: 提示说没有 .git 这样一个目录 在命令行输入 git init 然后回车就好了

    2024年02月07日
    浏览(53)
  • fatal: not a git repository (or any of the parent directories): .git 解决方案

      在命令行 输入 git init  然后回车就好了

    2024年02月04日
    浏览(65)
  • 完美解决 git 报错fatal: Not a git repository (or any of the parent directories): .git

    错误提示是找不到.git文件,无法执行git指令,意思是 当前你要提交的文件夹中没有.git这个文件 执行如下命令:

    2024年03月15日
    浏览(46)
  • 【yarn】 ‘husky install‘ fails if ‘.git‘ directory does not exists解决方法

    环境:win10 + yarn 1.22.19 问题:在使用yarn安装前端依赖时,yarn install 出现错误: .git can’t be found (see https://git.io/Jc3F9) error Command failed with exit code 1. 截图 根据设计,husky安装必须在与 .git 相同的目录中运行,但可以在准备脚本期间更改目录并传递子目录 打开web目录下的 package.

    2024年02月16日
    浏览(45)
  • 解决Git 报错:fatal: destination path ‘xxx‘ already exists and is not an empty directory

    拿到开发的Git地址,然后Git clone的时候,检测不出东西,只有一个.git目录,实际无东西。 可手动删除,或执行下面命令 然后再执行检出命令 熟悉 linux 命令都知道 rm -rf .git 命令会删除当前目录的 git 记录,如果没有把握的话,最好还是新建一个目录,比如xxx 目录,命令如下

    2024年02月05日
    浏览(71)
  • 解决Idea报错出现Git is not installed

    有时候打开Idea或者Android Studio时,会出现以下错误提示,这是idea的bug,无法识别git。 然后发现内置的git也不能识别项目的log信息了。 打开设置,选择Version Control-Git 点击Test 如果git目录没错的话,点击test以后下面会出现Git版本的提示。如果不能正确显示git的版本,说明目录不

    2024年02月11日
    浏览(52)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包