I'm doing:
git clone ssh://user@host.com/home/user/private/repos/project_hub.git ./
I'm getting:
Fatal: destination path '.' already exists and is not an empty directory.
I know path . already exists. And I can assure that directory IS empty. (I do ls inside and I see nothing!)
What am I missing here in order to clone that project into the current directory ?
ls -ado you see a.gitdirectory? – Davin Tryon Mar 25 '12 at 22:41rm -rf .* && git clone ssh://user@host.com/home/user/private/repos/project_hub.git .– James McLaughlin Mar 25 '12 at 22:42