GIT 上传文件出错:fatal: Could not read from remote repository. 解决方案
问题
git push -u origin master 执行后报错
fatal: Could not read from remote repository.
解决方案
1. git执行
git remote add origin git@github.com:username/xxx.git
2. 打开.ssh文件夹
找到 id_rsa.pub 文件
3. 打开GitHub的设置Settings
选择SSH KEYS设置,点击New SSH key按钮
用记事本打开 id_rsa.pub 文件将内容全部复制到Github的key中然后点击 add ssh key 按钮,即可。
others:
如果错误未能解决,尝试重置ssh key
ssh-keygen -t rsa -C "github账号"
1. 打开 .shh 文件夹,新生成的id_rsa、id_rsa.pub两个文件及新的Key
2. 打开github的Settings,设置ssh key(重复上述添加new SSH key步骤即可)