完美解决 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指令,意思是 当前你要提交的文件夹中没有.git这个文件

解决方案

执行如下命令:文章来源地址https://www.toymoban.com/news/detail-840119.html

git init

到了这里,关于完美解决 git 报错fatal: Not a git repository (or any of the parent directories): .git的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

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

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

相关文章

  • 解决 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)
  • 解决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 husky - git command not

    git命令报错: fatal: not a git repository (or any of the parent directories): .git husky - git command not found, skipping install 报错原因: 没有初始化git本地版本管理仓库,在打开文件的子目录层级中不包含.git文件,所以无法执行git命令。 解决方案: 执行git初始化 ,进行初始化 查看其状态 参考

    2024年02月04日
    浏览(50)
  • fatal: not a git repository (or any of the parent directories): .git

    小编遇到这样一个问题,当git clone 后,进行分支切换时,报错fatal: not a git repository (or any of the parent directories): .git 而且出现了分支无法查询到的情况下 解决方法:进去.git文件夹 再打开git终端, 如果直接在此处进行分支切换,会提示报错   输一下git branch -a 再回退到上一级

    2024年02月12日
    浏览(51)
  • fatal: Not a git repository (or any parent up to mount point /home)解决方法

    Git遇到一个问题: fatal: Not a git repository (or any parent up to mount point /home) Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set). 解决办法:git init 错误信息指出不是一个git仓库,或者它的父级目录也不是git仓库。请确保您在正确的目录中执行git命令,并且该目录是一个有效的

    2024年02月05日
    浏览(54)
  • git克隆报错:Permission denied (publickey).fatal: Could not read from remote repository解决办法

    Permission denied (publickey).fatal: Could not read from remote repository 1、问题解决首先参考文章 例如:缺少公钥解决办法 2、生成公钥报错 ssh-keygen -t rsa -C ‘邮箱’ 生成公钥时,报错如下: 解决办法: 需要换到C盘的C:UsersASUS.ssh目录下,再右键Git Bash Here 输入命令: ssh-keygen -t rsa -C \\\'

    2024年02月04日
    浏览(55)
  • Git报错和解决方法fatal: not a git repository,failed to push some refs, Your local changes to ‘file,pathspec

    本人详解 作者:王文峰,参加过 CSDN 2020年度博客之星,《Java王大师王天师》 公众号:JAVA开发王大师,专注于天道酬勤的 Java 开发问题 中国国学、传统文化和代码爱好者的程序人生,期待你的关注和支持!本人外号:神秘小峯 山峯 转载说明:务必注明来源(注明:作者:

    2024年02月05日
    浏览(57)
  • [git]报错fatal: ‘origin‘ does not appear to be a git repository Could not read from remote repository

    问题1:   fatal: \\\'origin\\\' does not appear to be a git repository fatal: Could not read from remote repository. 说明库是有的,但是没办法push。所以重新关联一下。 解决方法: 输入以下代码, 这是因为本地的分支没有和远程分支建立联系,需要执行以下代码就可以正常 push 了   问题2:   fatal:

    2024年02月09日
    浏览(54)
  • git报错:Permission denied (publickey). fatal: Could not read from remote repository.

    背景 :由于新换了电脑,新装了git,所以在用git拉取代码的时候就出现了标题一样的错误 ternimal下出现下面错误: Permissiondenied (publickey). fatal:Could not read from remote repository. Pleasemake sure you have the correct access rights and the repository exists. 分析原因 : 原因是由于你在本地(或者服务

    2024年02月05日
    浏览(56)
  • git 解决 “fatal: Could not read from remote repository.“

    现象 在使用Git将本地仓库推送到远程仓库的时候,发生了如下错误:“fatal: Could not read from remote repository.”   原因 出现这错误一般是以下两种原因: 客户端与服务端未生成 ssh key 客户端与服务端的ssh key不匹配 为解决以上问题,我们需要重新生成一次ssh key ,并重新配置一

    2024年02月09日
    浏览(41)

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

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

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

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

二维码1

领取红包

二维码2

领红包