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 have directory A with files matching directory B. Directory A may have other needed files. Directory B is a git repo.

I want to clone directory B to directory A but git-clone won't allow me to since the directory is non-empty.

I was hoping it would just clone .git and since all the files match I could go from there?

I can't clone into an empty directory because I have files in directory A that are not in directory B and I want to keep them.

Copying .git is not an option since I want refs to push/pull with and I don't want to set them up manually.

Is there any way to do this?

Update: I think this works, can anyone see any problems? -->

cd a
git clone --no-hardlinks --no-checkout ../b a.tmp 
mv a.tmp/.git .
rm -rf a.tmp
git unstage # apparently git thinks all the files are deleted if you don't do this
share|improve this question

4 Answers

up vote 36 down vote accepted

Given a directory, a, of files files matching a git repository, b, of tracked files:

git clone --no-checkout b a/a.tmp # might want --no-hardlinks for cloning local repo
mv a/a.tmp/.git a/
rmdir a/a.tmp
cd a
git reset --hard HEAD # git thinks all files are deleted, this reverses that behaviour
share|improve this answer
@russel ah you're, thank you – Dale Forester Nov 25 '10 at 15:48
2  
I needed to do git reset --hard HEAD or it wouldn't give up on the "deleted" files. – Dimitar Aug 31 '11 at 18:25
2  
git reset HEAD worked fine for me. git reset --hard HEAD destroys any changes in your files, so if they are not exactly the same as the files in the repository, you should not do that. – Tgr Dec 19 '12 at 16:58

Maybe I misunderstood your question, but wouldn't it be simpler if you copy/move the files from A to the git repo B and add the needed ones with git add?

UPDATE: From the git doc:

Cloning into an existing directory is only allowed if the directory is empty.

SOURCE: http://git-scm.com/docs/git-clone

share|improve this answer
No, the owner and the files could be arbitrary. This is for a situation with multiple developers. We all have existing directories and only one currently has a git checkout. We all largely have the same subset of files so we want to have the other developers be able to clone while retaining their files. And it should be as elegant and convenient as possible. – Dale Forester Mar 9 '10 at 17:32
Honestly, I don't see the point of developing in such a condition. Can't you use branches and merge operations? Or having sub-repositories with external dependencies? Why would you want to rely on a single "git checkout"? – Roberto Aloi Mar 9 '10 at 18:01
3  
A "single git checkout" is not the point of the whole ordeal. It's just that this is the way it is and we need a way to move forward. I updated the original question with a solution that appears to be working. I appreciate the feedback, though. – Dale Forester Mar 9 '10 at 18:14

I was looking for something similar, and here's what I came up with:

My situation is one where I have an active web tree and I was trying to create a remote repository for it without moving any of the files in the current web tree. Here's what I did:

  1. Go to the web tree and run git init
  2. Go to the intended location of the repository and run: git clone --bare /path/to/web/repo
  3. Edit the config file in my remote repo and remove the [remote "origin"] section.
  4. Add a [remote "origin"] section to .git/config in the web tree pointing to the new remote repo.
share|improve this answer

Here's what I ended up doing when I had the same problem (at least I think it's the same problem). I went into directory A and ran git init.

Since I didn't want the files in directory A to be followed by git, I edited .gitignore and added the existing files to it. After this I ran git add remote B && git pull origin master et voĆ­la, B is "cloned" into A without a single hiccup.

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.