Here's how to import a github repo into drive using google colab.
In the first cell, import the drive package and mount you google drive:
from google.colab import drive
drive.mount('/content/drive')
In the next cell, put a bash script that just clones whatever repo you want:
%cd /content/gdrive/MyDrive/
%mkdir -p github-folder
%cd ./github-folder
!pwd
%git clone https://github.com/user/repo.git /content/gdrive/MyDrive/github-folder/
%cd ./drive/MyDrive/github-folder/