Das Verfahren ist wie folgt.
--Mount Google Drive
google_drive.py
from google.colab import drive
drive.mount('/content/drive')
--Erstellen Sie ein Repository an dem vom Git-Klon angegebenen Speicherort
git_clone.py
import shutil
import os
#Ändern Sie das aktuelle Verzeichnis
os.chdir('/content/drive/My Drive')
cur_dir = os.getcwd()
git_name = '/MongoDB_PyMongo_Tutorial'
git_folder = cur_dir + git_name
#Löschen, falls vorhanden
if os.path.exists(git_folder):
shutil.rmtree(git_folder)
#Klonen
!git clone https://github.com/Giffy/MongoDB_PyMongo_Tutorial.git
Recommended Posts