【Colab】2.colab中使用github

文章目录

  • 1、初始配置git
  • 2、向github clone 和push
  • 3、创建新创库并同步github

本文只写自己用过的,github中的深度学习项目利用colab gpu来工作的方法,主要讲在colab中执行git命令的方法.使用前最好挂载上自己的硬盘,在自己的硬盘上进行项目操作,从而不会因为colab断开连接而失去相关配置。
所有git命令执行要在命令前加上感叹号“!”
本文主要讲colab配合github使用的几个命令。

1、初始配置git

colab中输入以下命令:

!git config --global user.name "name"
!git config --global user.email "[email protected]"

每次重新连接colab后都要重新配置。

2、向github clone 和push

有两个需求,clone和push,不同与常规的电脑上使用,一次配置好就可以使用常规的命令。这里要每次都要输入github帐户的用户名和密码。

import os
from getpass import getpass
user = getpass('GitHub user')
password = getpass('GitHub password')
os.environ['GITHUB_AUTH'] = user + ':' + password
!git clone https://$GITHUB_AUTH@github.com/xxx.git
#push 只是换一下命令
!git push https://$GITHUB_AUTH@github.com/xxx.git

与常规的clone相比只是在git clone地址多了用户名和密码在@符号前加用户名和密码。
事实上直接输入也是可以:

!git push https://username:[email protected]/xxx.git

用户名就是github边上:
【Colab】2.colab中使用github_第1张图片

3、创建新创库并同步github

将colab上的项目与github上的远程项目同步:

import os
from getpass import getpass
user = getpass('GitHub user')
password = getpass('GitHub password')
os.environ['GITHUB_AUTH'] = user + ':' + password
!git init
!git add .
!git config --global user.email "email@com"
!git config --global user.name "user name"
!git commit -m "first commit"
# Go to GitHub and create a new repo there
!git remote add origin https://$GITHUB_AUTH@github.com/xxx.git
!git push -u origin master

你可能感兴趣的:(colab,github,github)