index.html添..._github gh-pages">
当前位置:   article > 正文

创建github仓库的gh-pages分支

github gh-pages

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

转载于:https://www.cnblogs.com/xiaoyucoding/p/8150580.html

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/595421
推荐阅读
相关标签
  

闽ICP备14008679号