!git push:-致命:无法读取“ https://github.com”的用户名:无此类设备或地址|| google colaboratory

时间:2018-12-28 15:19:35

标签: github push google-colaboratory

我已经将Github存储库克隆到了Google Colab。 我想将其推送到GitHub。 我收到错误消息

如何将GitHub配置为Google colab,以便可以将其推送到Github。

1 个答案:

答案 0 :(得分:0)

这种方式有效:

!git add .
!git commit -m "..."
!git remote set-url origin "https://<username>:<password>@github.com/<username>/<repo_name>"
!git push origin <branch_name>

根据this document