fatal: unable to access 'https://github.com/NVIDIA/cutlass/': GnuTLS recv error (-110): The TLS connection was non-properly terminated.
时间: 2023-12-11 19:01:51 浏览: 190
解决fatal:remote error:You can't push to git://github.com/username/*.git问题的办法
当你在使用 `git push` 命令时,出现了 `fatal: unable to access 'https://github.com/NVIDIA/cutlass/': GnuTLS recv error (-110): The TLS connection was non-properly terminated` 错误。这个错误通常是由于网络连接问题或者配置问题引起的。有几种可能的解决方法可以尝试:
1. 确保你的网络连接正常。检查你的网络连接是否稳定,并且没有被防火墙或代理服务器阻止。
2. 尝试使用 git 的 SSH 协议进行推送。通过使用 SSH 协议,可以避免使用 HTTPS 协议时可能出现的连接问题。首先,你需要在 GitHub 上配置你的 SSH 密钥,然后将远程仓库的 URL 修改为 SSH 格式。可以使用以下命令修改远程仓库 URL:
```
git remote set-url origin git@github.com:NVIDIA/cutlass.git
```
这将把远程仓库的 URL 修改为使用 SSH 协议。
3. 更新 git 版本。有时,旧版本的 git 可能会导致一些连接问题。尝试升级到最新版本的 git,以确保你使用的是最新的修复和功能。
希望这些方法能够帮助你解决这个问题。如果问题仍然存在,请参考引用和引用中提供的资料,这些资料提供了更多关于解决类似问题的方法。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [Git报错解决:fatal: unable to access ‘https://github.com/.......‘: OpenSSL SSL_read: Connection ...](https://blog.csdn.net/qq_40999917/article/details/116213557)[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: 33.333333333333336%"]
- *2* [解决fatal:remote error:You can't push to git://github.com/username/*.git问题的办法](https://download.csdn.net/download/weixin_38502915/12844965)[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: 33.333333333333336%"]
- *3* [解决fatal: unable to access ‘https://github.com/***/***.git/‘: Empty reply from server](https://blog.csdn.net/weixin_42069606/article/details/116136601)[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: 33.333333333333336%"]
[ .reference_list ]
阅读全文