2013-09-30 44 views
-2

我下載了一個源代碼包。它接近3GB。但它是一個空目錄,只包含一個.git目錄。我如何從中檢出代碼?如何從本地git目錄簽出代碼

+0

在所有一切的好賴有什麼在'.git'目錄,如果運氣好的話去'git checkout'就可以做到。 – jthill

回答

0

使用:

git clone ./directoryofRepo ./WorkingDirectory 
0
git reset --hard 

如果目錄實際上是repo.git,然後

git clone repo.git repo 
相關問題