我们如何将仓库从Google Colaboratory推送到Github

时间:2019-10-02 17:15:56

标签: google-colaboratory

我可以克隆,添加文件并将其提交到Google Colaboratory上的本地repose,但是我试图将其推到github上却无法正常工作。我如何将其推送到github

2 个答案:

答案 0 :(得分:0)

这对我有用:

os.chdir(YOUR_DIRECTORY)
!git add *
!git config user.email "YOUR_EMAIL@gmail.com"
!git commit -a -m 'message'
!git push https://YOUR_GITHUB_USERNAME:YOUR_GITHUB_PASSWORD@github.com/YOUR_GITHUB_USERNAME/YOUR_REPOSITORY_NAME.git --all

答案 1 :(得分:0)

您可以在本文中阅读更多详细信息。

https://medium.com/@oyewusiwuraola/how-to-work-with-github-in-google-colaboratory-notebook-18a414dd91ec

这与上面的答案类似。