码迷,mamicode.com
首页 > 其他好文 > 详细

创建github仓库的gh-pages分支

时间:2017-12-30 19:07:35      阅读:575      评论:0      收藏:0      [点我收藏+]

标签:ges   commit   world   版本   body   branch   完成   init   int   

git symbolic-ref命令将当前工作分支由master切换到一个尚不存在的分支gh-pages。

$ git symbolic-ref HEAD refs/heads/gh-pages

删除暂存区文件,即相当于清空暂存区。

$ rm .git/index

创建项目首页index.html

$ printf "hello world.\n" > index.html

添加文件index.html到暂存区。

$ git add index.html

执行提交。提交完毕分支gh-pages完成创建。

$ git commit -m "branch gh-pages init"

执行推送命令,在github远程版本库创建分支gh-pages。

$ git push -u origin gh-pages

创建github仓库的gh-pages分支

标签:ges   commit   world   版本   body   branch   完成   init   int   

原文地址:https://www.cnblogs.com/xiaoyucoding/p/8150580.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!