tags:

views:

136

answers:

4

Hi, I have a git repository (at github.com) with two branches: master and gh-pages. I would like to have the gh-pages branch in a subdirectory, so that I don't need to switch branches every time.

repo/
    (content of the master branch)
    gh-pages/
            (content of the gh-pages branch)

Is that possible ?

+3  A: 

That's not how things are designed to work. You could theoretically clone the repository within a subdirectory of your original clone and mark that directory as excluded from the higher level repository, but wouldn't it be much simpler to just check it out in a completely different directory instead of a subdirectory?

That is to say...

/repo/master/(clone on master branch)

and then another clone that's on the other branch

/repo/gh-pages/(clone on gh-pages branch)
Amber
+2  A: 

Generally with version control it's not a good idea to combine multiple projects into a single repository. For instance, what if someone would like to fork your repository, but not host their copy at GitHub? Then the gh-pages directory would be completely useless to them. Even if they did host theirs at GitHub, the gh-pages directory could very well still be irrelevant to them.

I realize that the GitHub way of doing this goes against this advice, somewhat (after all, even though they are on different branches, they're still in the same repo). However, the branches in this case are completely unrelated (they don't share any history) so from a practical perspective, it's as if they were in separate repositories. If someone clones your repo and doesn't want the gh-pages branch, they can delete it and it will have zero effect on master.

Dan Moulding
+1  A: 

Branches in git are pointers to commits (that move), and so having a branch as a subdirectory is not possible.

To be fair, git co gh-pages is not much harder than cd ../gh-pages

Lakshman Prasad
+3  A: 

You may be looking for the subtree merging option: http://progit.org/book/ch6-7.html

It will let you checkout an unrelated branch into a subdirectory of another and then merge back and forth between them. You would still have to checkout gh-pages and merge in changes from the main repo before pushes would go live on GitHub, however.

You could also check gh-pages out as a submodule of your master branch if that suits you better.

Scott Chacon
FWIW, this is the one that ought to be accepted as the correct answer.
Ben Collins