记录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

就好啦!    ^_^

原文地址:https://www.cnblogs.com/yong2128/p/10060707.html

时间: 2024-10-09 17:23:46

记录github错误的相关文章

记录详细错误信息

utils.ToLog.WriteLog(AboutConfig.LogPath, "\r\n方法:" + System.Reflection.MethodBase.GetCurrentMethod().DeclaringType.FullName + "." + System.Reflection.MethodBase.GetCurrentMethod().Name + "[##本地##文件不存在]\r\n导致异常的应用程序或对象名称:" +

Github错误:fatal: Authentication failed for 'https://github.com/ ...

GitHub push代码发生错误:fatal: Authentication failed for 'https://github.com/ ... 使用的https提交,在用SourceTree提交代码时候发生错误,返回的错误提示说: fatal: Authentication failed for 'https://github.com/ ... 如图所示: 解决方案,重新执行git config命令配置用户名和邮箱即可: git config -–global user.name "xx

github错误:fatal: remote origin already exists.

原文链接:http://blog.csdn.net/dengjianqiang2011/article/details/9260435 如果输入$ Git remote add origin [email protected]:djqiang(github帐号名)/gitdemo(项目名).git 提示出错信息:fatal: remote origin already exists. 解决办法如下: 1.先输入$ git remote rm origin 2.再输入$ git remote ad

记录C#错误日志工具

在编程过程中,我们经常会用try...catch处理可能出错的代码块.如果程序出现错误,则直接show出错误信息. 当然,大型的系统都有错误日志处理模块,用数据库记录错误日志信息,有相应的写入错误日志和读取操作日志的功能,功能强大,实现起来肯定也是相当的复杂. 可有时我们只是想方便的查看错误日志信息,但又不想带来复杂的代码实现.鱼和熊掌都想要?好吧,我来满足你. 1.我们需要把项目的目标框架设置为.Net Framework 4.0: 2.找到项目的代码生成路径,比如我的是bin\Debug\,

[华为机试练习题]36.简单错误记录(错误 求正解)

题目 描述: 开发一个简单错误记录功能小模块,能够记录出错的代码所在的文件名称和行号. 处理: 1. 记录最多8条错误记录,循环记录,对相同的错误记录(净文件名称和行号完全匹配)只记录一条,错误计数增加: 2. 超过16个字符的文件名称,只记录文件的最后有效16个字符: 3. 输入的文件可能带路径,记录文件名称不能带路径. 题目类别: 字符串 难度: 中级 运行时间限制: 10Sec 内存限制: 128MByte 阶段: 入职前练习 输入: 一行或多行字符串.每行包括带路径文件名称,行号,以空格

git 提交代码到github错误处理

git push -u origin mastererror: The requested URL returned error: 403 Forbidden while accessing https://github.com/hjyoung/php-redis-in-action.git/info/refs 修改配置 vim .git/config 将配置 [remote "origin"]        fetch = +refs/heads/*:refs/remotes/ori

记录一个错误

在做清华OJ上的一道题时, 写了一个归并排序,代码如下: 1 void MergeSort(int x[], int y[], int lo, int hi) 2 { 3 /* 4 *归并排序函数,以 x[] 为标准排序 5 */ 6 7 if(lo < hi) 8 { 9 int mi = (lo + hi) >> 1 ; 10 11 MergeSort(x, y, lo, mi) ; 12 MergeSort(x, y, mi+1, hi); 13 Merge(x, y, lo, m

记录 OpenCV 错误

最近在做一个"人脸识别"的项目,我想用OpenCV来分析图片中的人脸. 但是在测试的时候,程序报出"检测到0张脸" 可能的错误原因: 1.教程中OpenCV的版本问题,教程中用的版本是2.4.7,而我用的版本是2.4.10 2.编程使用的编辑器的问题 原文地址:https://www.cnblogs.com/Black-YeJing/p/9175589.html

python核心编程学习记录之错误与异常