-2
我下載了一個源代碼包。它接近3GB。但它是一個空目錄,只包含一個.git目錄。我如何從中檢出代碼?如何從本地git目錄簽出代碼
我下載了一個源代碼包。它接近3GB。但它是一個空目錄,只包含一個.git目錄。我如何從中檢出代碼?如何從本地git目錄簽出代碼
使用:
git clone ./directoryofRepo ./WorkingDirectory
git reset --hard
如果目錄實際上是repo.git,然後
git clone repo.git repo
在所有一切的好賴有什麼在'.git'目錄,如果運氣好的話去'git checkout'就可以做到。 – jthill