Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question
2  
if you do a ls -a do you see a .git directory? – Davin Tryon Mar 25 '12 at 22:41
6  
rm -rf .* && git clone ssh://user@host.com/home/user/private/repos/project_hub.git . – James McLaughlin Mar 25 '12 at 22:42
@dtryon - No. But I see a DS_Store whatever this is. Perhaps I should get rid of it. Thanks for that -a :s – MEM Mar 25 '12 at 22:43
@Thanks four your quick reply. James Maclaughlin that seems a beautiful command to make sure we clone to an empty directory. :) – MEM Mar 25 '12 at 22:49
1  
I'm assuming then you are on a Mac. Does this help: stackoverflow.com/questions/107701/… – Davin Tryon Mar 25 '12 at 22:51
show 3 more comments

5 Answers

To be sure that you could clone the repo, go to any temporary directory and clone the project there:

git clone ssh://user@host.com/home/user/private/repos/project_hub.git

This will clone your stuff into a project_hub directory.

Once the cloning has finished, you could move this directory wherever you want:

mv project_hub /path/to/new/location

This is safe and doesn't require any magical stuff around.

share|improve this answer

If the current directory is empty, then this will work:

git clone <repository> foo; mv foo/* foo/.git* .; rmdir foo
share|improve this answer
in my case, it worked even with some files in the '.' directory – OSdave Apr 22 '12 at 18:10

Improving on @GoZoner's answer:

git clone <repository> foo; shopt -s dotglob nullglob; mv foo/* .; rmdir foo

The shopt command is taken from this SO answer and changes the behavior of the 'mv' command on Bash to include dotfiles, which you'll need to include the .git directory and any other hidden files.

Also note that this is only guaranteed to work as-is if the current directory (.) is empty, but it will work as long as none of the files in the cloned repo have the same name as files in the current directory. If you don't care what's in the current directory, you can add the -f (force) option to the 'mv' command.

share|improve this answer
git clone your-repo tmp && mv tmp/.git . && rm -rf tmp && git reset --hard
share|improve this answer
up vote 0 down vote accepted

Solution: On this case, the solution was using the dot, so: rm -rf .* && git clone ssh://user@host.com/home/user/private/repos/project_hub.git .

rm -rf .* && may be omitted if we are absolutely sure that the directory is empty.

Credits go to: @James McLaughlin on comments below.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.