Git提交时出现错误:ERROR: Repository not found. fatal: Could not read from remote repository.

使用 cd ~/.ssh 查看了一下SSH key发现也没有问题,查阅了网上的一些解决方案,都是建议重置一个SSH key, 最后发现了问题所在,查看本地.git/config设置的仓库url地址和github使用的链接地址也是一致的
、、
解决方法:
***重点
将 git remote add origin [email protected]:michaelliao/learngit.git
改成 git remote add github [email protected]:michaelliao/learngit.git

提交改成 git push github master
、、

你可能感兴趣的:(Git提交时出现错误:ERROR: Repository not found. fatal: Could not read from remote repository.)