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.

Here's what I'd like:

REPO-A
  /.git
  /otherFiles
  /REPO-B
    /.git
    /moreFiles

I want to be able to push all of REPO-A's contents to REMOTE-A and only REPO-B to REMOTE-B.

Possible?

share|improve this question

4 Answers

up vote 4 down vote accepted

It sounds like you want to use Git submodules.

share|improve this answer
Not exactly: it won't push all content of repoA: only A plus a reference to B. But I don't criticize your answer, I was rushing writing pretty much the same when I re-read the OP's question ;) – VonC Jan 11 '11 at 16:06
This is pretty much the use case for submodules. REPO-A and REPO-B are treated as git repos in their own right, with their own commits, origins, history, etc. – Damien Wilson Jan 11 '11 at 16:10
so if I am reading that right, can I independently check out a submodule-d repo entirely outside of the one I find it in? How would I take an already existing repo and reference it as a submodule in another project? – JohnO Jan 11 '11 at 19:08

Another method to consider is found here

http://debuggable.com/posts/git-fake-submodules:4b563ee4-f3cc-4061-967e-0e48cbdd56cb

basically allows you to have "fake submodules" I haven't tried it but it looks a lot simpler.

share|improve this answer

I have always used symlinks to maintain two separate and distinct repos.

share|improve this answer

Yes, you can do exactly what you're asking with the file hierarchy you drew. Repo-B will be independant and have no knowledge of Repo-A. Repo-A will track all changes in it's own files and Repo-B's files.

However, I would not recommend doing this. Every time you change files and commit in Repo-B you'll have to commit in Repo-A. Branching in Repo-B will mess with Repo-A and branching in Repo-A will be wonky (trouble removing folders, etc.). Submodules are definitely the way to go.

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.