简体   繁体   中英

What's the easiest way to deploy a folder to a branch in git?

我的master分支中有一个名为public/的文件夹,将其内容复制到不同分支的根目录(例如gh-pages的最简单方法是什么?

One really nice trick illustrated in Generate GitHub pages in a submodule by Blind Gaenger (Bernd Jünger) is to declare a branch as a submodule for another branch!

So if your public content was in its own orphan branch (like gh-pages content is usually kept in its own orphan branch), then you could:

  • declare public as a submodule of your main repo in master branch
  • declare the same public as a submodule of your main repo in gh-pages

So any modification that you make in submodule public when you are in master branch can be updated ( git submodule update ) once you switch to gh-pages branch!

I am not saying this is a solution for your current setup, because it involves removing public from your main content, and adding it back in its own branch (ie, the other solutions might be more straightforward), but it is an interesting way to share a common directory:

cd yourRepo
git symbolic-ref HEAD refs/heads/public
rm .git/index
mv public ..
git clean -fdx
mv ../public/* .
git add .
git commit -m "public content in orphan branch public"
git push origin public

But once you have created an orphan branch to include that ( public ) content, the trick to add that branch content as a submodule for other branch is:

$ git checkout master
$ git submodule add -b public git@github.com:user/repo.git public
$ git status
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#    new file:   .gitmodules
#    new file:   public
#
$ git commit -m "added public as submodule"
$ git push

And you can repeat that step for your gh-pages branch.

That will create a directory " public ", present both when you checkout master or gh-pages .
In both cases (both checkout), a git submodule update will be enough to get back the latest evolutions done on public submodule.
And as usual when it comes to submodules, once you do modifications in public directory, make sure you are on its ' public ' branch, commit and push, then go back one directory above, and add-commit again.


Update August 2016: Simpler GitHub Pages publishing now allows to keep your page files in a subfolder of the same branch (no more gh-pages needed):

现在,您可以在存储库设置中选择源,GitHub Pages将在那里查找您的内容。

So the submodule trick is no longer necessary to make both type of content visible through the same branch.

git checkout --orphan branch_name
git rm -rf .
git checkout master -- public

Is public in the root dir of master?

cp -r public/* ./
git add .
git stash
git checkout gh-pages
git stash apply

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM