如果我們往一個非空的目錄下 clone git 項目,就會提示錯誤信息:
fatal: destination path ‘.’ already exists and is not an empty directory.
解決的辦法是:
1. 進入非空目錄,假設是 /workdir/proj1
cd /workdir/proj1
2. git clone 到目錄下的臨時目錄
Vim
git clone --no-checkout https://git.oschina.net/NextApp/platform.git tmp
1
git clone --no-checkout https://git.oschina.net/NextApp/platform.git tmp
3. mv tmp/.git . #將 tmp 目錄下的 .git 目錄移到當前目錄
4. rmdir tmp
5. git reset –hard HEAD
然後就可以進行各種正常操作了。