gitee push fatal: Could not read from remote repository.
时间: 2023-10-19 15:34:17 浏览: 94
windows下Idea使用git clone failed. Could not read from remote repository.
在Git中,当你从本地仓库上传到远程仓库时,如果遇到"gitee push fatal: Could not read from remote repository"这个错误,通常是因为你没有正确设置SSH公钥所致。
解决这个问题的步骤如下:
1. 生成对应本地仓库的SSH公钥。
2. 获取对应本地仓库的SSH公钥值。
3. 将得到的SSH公钥复制,添加到远程仓库(gitee)的SSH公钥上。
具体操作步骤如下:
1. 打开终端或命令行界面,输入以下命令生成SSH公钥:
```
ssh-keygen -t rsa -C "your_email@example.com"
```
注意:将"your_email@example.com"替换为你注册gitee时使用的电子邮件地址。
2. 生成SSH公钥后,可以通过以下命令获取SSH公钥的值:
```
cat ~/.ssh/id_rsa.pub
```
复制输出的SSH公钥值。
3. 登录到gitee的网站,在头像上方点击进入设置,然后选择"SSH公钥"。
4. 在SSH公钥页面上,点击"添加SSH公钥"按钮,将之前复制的SSH公钥值粘贴到输入框中,并点击"确定"保存。
5. 回到本地仓库的终端或命令行界面,再次运行"git push origin master"命令,应该可以成功上传到远程仓库。
通过以上步骤,你应该能够解决"gitee push fatal: Could not read from remote repository"的问题,并成功将本地仓库上传到gitee远程仓库。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [Gitee:使用ssh提交代码却提示:DeployKey does not support push code fatal: Could not read from remote...](https://blog.csdn.net/weixin_46253682/article/details/125897811)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文