Google ColabでGitを活用 備忘録(2) ▲▼Remind using Git on Google Colabratry(2)▲▼
前回BLOG https://shikuuk.blogspot.com/2025/10/google-colabgitremind-using-git-on.html 前回までにmemoしたGoogleColabにおけるGitのBasicOperationについてSummarizeしておきます。GoogleColabをStartするたびに以下のCommandLineをNeed To Run the below code. 1)GitIDとE-mailAdressをInput ! git config --global user . email "shikuukitashirakawa@gmail.com" ! git config --global user . name "shikuu" 2)GoogleDriveをimplementation from google.colab import drive drive.mount ( '/content/drive' ) # 1. Google DriveのMy Drive直下へ移動 %cd /content/drive/MyDrive/ # 2. プロジェクト用のフォルダを作成・移動(初回のみ) ! mkdir -p Colab_Git_Project %cd Colab_Git_Project # 3. 現在のディレクトリを確認 ! pwd ! git init 3)GitでManagementするFolderに移動 %cd /content/drive/MyDrive/Colab_Git_Project ! ls -a 4)GitでCurrentDirectryをAdd Under ControlingすることをDeclare ! git add . #対象Folder内にあるすべてのファイルをgit管理Fileに指定 Until last issue of blog, my folder have had the below status I check the log of Git, now. Avobe massege is shown that the current directry has two commits. 次に、サプー...