Answers for "git clone iin colab using the private repo"

0

git clone iin colab using the private repo

import os
from getpass import getpass
user = getpass('GitHub user')
password = getpass('GitHub password')
os.environ['GITHUB_AUTH'] = user + ':' + password
!git clone https://[email protected]/ziatdinovmax/Gnet-test.git
Posted by: Guest on May-24-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language