当你在使用 Git 命令时遇到 fatal: not in a git directory 错误,这通常意味着你当前所在的目录不是一个 Git 仓库,或者 Git 无法在当前目录下找到 .git 目录(这是 Git 仓库的标识)。下面我将根据提示逐步解答你的问题: 1. 确认当前所在目录 首先,你需要确认你当前所在的目录。你可以使用 pwd(在 Unix/Linux...
fatal: not in a git directory 或 fatal: --local can only be used inside a git repository 其实是没有操作权限,使用管理员打开 cmd 或者 powershell 就不报错了。
Fatal:not in a git directory 很多博文配置git都是在打开Git Bash中配置,我之前一直用vscode没有下载过git,这次配置报错not in a git directory———解决办法如下: 先打开Git Bash所在的文件夹 双击打开git-cmd.exe 先输git config –global user.email "你的邮箱号" 再输git config –global user.name "...
fatal: not in a git directory Error: Command failed with exit 128: git 二、解决方法 使用brew -v,仔细看,可以发现有两个fatal(致命错误)提示: 解决方法就在提示中,根据提示,分别执行下面两个命令: git config --global --add safe.directory /opt/homebrew/Library/Taps/homebrew/homebrew-core git confi...
一、问题 在添加Git邮箱和账号时如果出现了fatal: not in a git directory 的提示,不要慌,我们一起来看看如何解决: 二、解决方法 1、先打开你的Git Bash所在的文件夹,然后打开git-cmd.exe: 2、打开以后再执行一下命令: git config --global user.email "你的邮箱" ...
directory /opt/homebrew/Library/Taps/homebrew/homebrew- git config --global --add safe.directory /opt/homebrew/Library/Taps/homebrew/homebrew-cask 解决方法二 取消挂载这两个包,没有测试。 代码语言:javascript 复制 brew untap homebrew/core brew untap homebrew/cask 解决方法三 重装brew到/opt下。注意,...
fatal: not in a git directory Error: Command failed with exit 128: git 导致包安装不成功,解决办法: brew -v 绿色框就是提示你需要做的,输入 git config --global --add safe.directory /opt/homebrew/Library/Taps/homebrew/homebrew-core git config--global --add safe.directory /opt/homebrew/Library...
fatal: not in a git directory Error: Command failed with exit 128: git问题查找1. brew -v 查看问题log suyf@suyfdeMac-mini ~ % brew -v Homebrew 4.0.18-18-g64259a4 fatal: detected dubious ownership in repository at '/opt/homebrew/Library/Taps/homebrew/homebrew-core' To add an exception...
在百度找了一大堆 最后找到了这个解决方案 非常好使 解决 Mac brew install xxx git config --global --add safe.directory /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core git config --global --add …
git解决 fatal: not in a git directory 问题描述: 执行下面语句时报错:fatal: not in a git directory git config --global user.name "yourName" //注意,--和global之间没有空格 git config --global user.email "yourName@gmail.com" 先进入git目录,或使用 git init 新建一个 Git 仓库。