我已经将Github存储库克隆到了Google Colab。 我想将其推送到GitHub。 我收到错误消息
如何将GitHub配置为Google colab,以便可以将其推送到Github。
答案 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>