在 github 上进行开发时,我经常在我的 master 分支中维护一个html/
或_site/
子目录,在那里我为项目生成基于 Web 的文档。我想切换到我的 gh-pages 分支,并将pull
这个html
目录的内容切换到 gh-pages 分支的根目录,这样它将通过 github 呈现为一个不错的网站(它会自动在gh-pages
at 中呈现 html username.github.com/repositoryname
)。执行此操作的最佳工作流程是什么?
如果我还没有设置 gh-pages 分支,我可以分支,清除分支,然后复制html
目录的内容,然后,我已经准备好了一个站点。但我不确定以后如何最好地更新 gh-pages 分支。
git branch gh-pages
git checkout gh-pages
# Remove files I don't need from the gh-pages branch
rm -rf data/ man/ R/ README.md NEWS NAMESPACE DESCRIPTION demo/
# move documentation to the root
mv inst/doc/html/* .
# remove the rest
rm -rf inst/
git add *
git commit -a -m "gh-pages documentation"
git push origin gh-pages
git checkout master
现在我应该怎么做才能稍后更新 gh-pages 分支?听起来这可能涉及子树合并,但我不太确定。