git报错:‘origin‘does not appear to be a git repository的解决方法


#事故现场

git push origin master时报错:

fatal: 'origin' does not appear to be a git repository

#解决方法

使用git remote -v命令,什么都没有输出;
说明和远程已失去联系,这种情况可能是远程仓库已改名,或者是git remote add时操作没有将相关配置加上(或者有异常);
第一种可能可以排除,那就是第二种可能了。

和其他git项目对比了一下.git/config文件,发现了问题所在,这个git仓库只有[core]节点,没有[remote “origin”]和[branch “master”]节点信息。

[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true

也就是说当你git push origin master的时候,git需要去config中查找你提交的分支信息,但是config中又是空的,所以返回上述错误。
所以解决方法就是把信息直接填上:

[core]
	repositoryformatversion = 0
	filemode = false
	bare = false
	logallrefupdates = true
	symlinks = false
	ignorecase = true
[remote "origin"]
	url = http://192.168.1.183/git/RCTools.git
	fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
	remote = origin
	merge = refs/heads/master


  • 9
    点赞
  • 24
    收藏
    觉得还不错? 一键收藏
  • 6
    评论
当出现错误信息"fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository."时,这通常是由于没有正确关联远程仓库导致的。有两种可能的原因,一种是没有添加关联,另一种是添加的关联有误。以下是解决该问题的步骤: 1. 首先,使用命令"git remote -v"查看当前的远程仓库详细信息,确认是否有正确的仓库名称和关联地址。如果发现远程仓库名称错误,可以使用命令"git remote remove origin"删除错误的远程仓库。 2. 然后,使用命令"git remote add origin 仓库地址"重新添加正确的远程仓库地址。确保仓库地址是正确的,并且与你要提交的代码所在的远程仓库相匹配。 3. 最后,使用命令"git push -u origin master"将代码提交到远程仓库的master分支。确保使用了正确的仓库名称和分支名称进行提交。 通过以上步骤,你应该能够成功解决"fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository."的问题。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *3* [git-报错总结-fatal: 'origin' does not appear to be a git repository...](https://blog.csdn.net/vv___/article/details/105744407)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] - *2* [fatal: origin does not appear to be a git repository fatal: Could not read from remote repository.](https://blog.csdn.net/Menqq/article/details/128704040)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值