自建项目push后再pull报The remote end hung up unexpectedly问题解决

当git clone之后,直接git pull它会自动匹配一个正确的remote url

是因为在config文件中配置了以下内容:

[branch "master"]
     remote = origin
     merge = refs/heads/master

表明:

1.git处于master这个branch下时,默认的remote就是origin;

2.当在master这个brach下使用指定remote和merge的git pull时,使用默认的remote和merge。

但是对于自己建的项目,并用push到远程服务器上,并没有这块内容,需要自己配置。

如果直接运行git pull,会得到如此结果:

fatal: 'repositories/android.git' does not appear to be a git repository
fatal: The remote end hung up unexpectedly

此时,可以直接修改项目下.git文件夹中的config文件,加上上面的配置就好。


你可能感兴趣的:(自建项目push后再pull报The remote end hung up unexpectedly问题解决)