fatal: Could not read from remote repository.
我的本地环境是windows,我的push命令如下:
$ git remote add origin ([email protected]:xxx/xxxx.git)这个命令是成功的,因为没有任何的错误提示(linux中没有提示的是最好的,意味着你的操作成功)
$ git push -u origin master执行这个命令是,提示以上错误,按照网上的办法,test了一下服务器ssh -T [email protected] ,没有任何问题,重新生成密钥,导入到服务器依然没有解决,最后
git config --local -e
将url = [email protected]:username/repo.git改为url = https://github.com/username/repo.git(此地址由github网站上点击ssh生成的)
然后保存,再次执行
发现可以了,我想应该有不少windows下面的git用户遇到此问题吧,希望能帮助大家。