text 使用主分支保持gh-pages最新

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 使用主分支保持gh-pages最新相关的知识,希望对你有一定的参考价值。

// Reference: http://lea.verou.me/2011/10/easily-keep-gh-pages-in-sync-with-master/

$ git add .
$ git status // to see what changes are going to be commited
$ git commit -m 'Some descriptive commit message'
$ git push origin master

$ git checkout gh-pages // go to the gh-pages branch
$ git rebase master // bring gh-pages up to date with master
$ git push origin gh-pages // commit the changes
$ git checkout master // return to the master branch

以上是关于text 使用主分支保持gh-pages最新的主要内容,如果未能解决你的问题,请参考以下文章

markdown 从主分支上的`dist`文件夹部署到`gh-pages`。适用于[yeoman](http://yeoman.io)。

markdown 从主分支上的`dist`文件夹部署到`gh-pages`。适用于[yeoman](http://yeoman.io)。

github 的 gh-pages 和 master 分支是啥关系

github 的 gh-pages 和 master 分支是啥关系

github展示项目

创建github仓库的gh-pages分支