记录github错误

Posted yong2128

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记录github错误相关的知识,希望对你有一定的参考价值。

困扰已久的问题,用git push origin master 命令push项目到github上时,总是出现:

fatal : ‘origin’ does not appear to be a git repository

这样的错误,问题在于.git目录下的config文件中只有[core],没有[remote "origin"]和[branch "master"]信息:

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

 也就是说当git push origin master的时候,git需要去config中查找提交的分支信息,但是config中又是空的,所以返回这个错误。

 

解决的方法就是在config文件中添加上[remote "origin"]和[branch "master"]这两个信息:

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

[remote "origin"]
  url = https://github.com/github名/仓库名
  fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
  remote = origin
  merge = refs/heads/master

就好啦!    ^_^












以上是关于记录github错误的主要内容,如果未能解决你的问题,请参考以下文章

错误记录GitHub 网站和仓库无法访问 ( 域名重定向 | 检查 C:WindowsSystem32driversetchosts 配置文件中的 GitHub 地址域名配置 )

错误记录GitHub 提交报错 ( OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection to github.com:443 )

gorm的使用以及错误记录

Github GraphQL API v.4.0 游标错误

错误记录Android Studio 向 GitHub 提交代码报错 ( Push failed: Failed with error: Could not read | 使用命令行提交代码 )(代码

错误记录Android Studio 向 GitHub 提交代码报错 ( Push failed: Failed with error: Could not read | 使用命令行提交代码 )(代码