git: put a branch in a subdirectory

后端 未结 6 1388
北恋
北恋 2021-02-04 00:35

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 branc

相关标签:
6条回答
  • 2021-02-04 01:02

    You may be looking for the subtree merging option.

    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.

    0 讨论(0)
  • 2021-02-04 01:02

    Starting with git 2.5, you can have both branches checked out at the same time in different directories. See https://github.com/blog/2042-git-2-5-including-multiple-worktrees-and-triangular-workflows. Setup via git worktree add -b gh-pages ../gh-pages origin/gh-pages.

    If you want to have the content of a subdirectory of your master checkout to be put into gh-pages on github, use the script provided at https://github.com/X1011/git-directory-deploy.

    0 讨论(0)
  • 2021-02-04 01:02

    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.

    0 讨论(0)
  • 2021-02-04 01:13

    I've tried the git subtree trick, but it requires that master have all the gh-pages content committed to it, which is not ideal in this case. Much better and simpler is to

    1. Create a new directory at ./repo/gh-pages/
    2. Put a line on .gitignore for that (gh-pages)
    3. cd gh-pages/, git init and git checkout -b gh-pages, creating an independent git remote there

    You can also git clone directly to ./gh-pages/ with only the branch you want.

    0 讨论(0)
  • 2021-02-04 01:15

    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)
    
    0 讨论(0)
  • 2021-02-04 01:18

    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

    0 讨论(0)
提交回复
热议问题