有没有办法将google colab中的本地文件存储中的一些数据上传到github或kaggle个人资料帐户?
答案 0 :(得分:0)
由于您的问题似乎是开放式的,我会尽可能地回答。如果您正在考虑更具体的数据类型,请添加一个具体示例。
一种方法是简单地使用git命令行工具。
github_repo = example_repo
file_to_sync = 'some_path/some_file'
!git clone https://github.com/user/$github_repo
!cp $file_to_sync $github_repo
!cd $github_repo && git add $file_to_sync && git commit -m "file added"
!cd $github_repo && git push