git push origin master时出错:fatal: ‘origin’ does not appear to be a git repository

  • Post author:
  • Post category:其他

背景:

    最近将ubuntu更新到ubuntu16.04,然后git了几个项目,发现提交修改时总是报错,fatal: ‘origin’ does not appear to be a git repository。我以前用ubuntu14.04时从来没遇到过这样的错误,一时不知如何解决。

    网上搜索了一下,有使用以下方法的:

    输入:git remote add origin git@github.com:yourusername/test.git,然后再重新提交,其中yourusername就是github的账号,test就是需要提交代码的仓库名。

    但是我试了这种方法,在我这并没有解决问题。

对比.git/config文件

    之后我查看.git目录下的config文件发现了问题所在,只有[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 = true
        bare = false
        logallrefupdates = true

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

    其中url对应的就是你github上的项目地址。

    其实我也不知道ubuntu16.04上为啥git pull时config文件的信息是不全的,之前并没有遇到过,这里做个记录。


版权声明:本文为github_37157365原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。