微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

github 创建gh-pages分支作为静态页面浏览地址

先到github,找到项目主页面,创建gp-pages分支

在本地把项目克隆下来

git clone <你的项目地址>

完成以后cd 项目名称进入项目主目录

  • 本地创建分支,并且切换到该分支
    git checkout --orphan gh-pages
  • 删除里面的文件
    git rm -rf .
  • 之后再提交到分支

    git add .
    git commit -m 'push to branch'
    git push origin gh-pages
  • 一行行输入上述命令执行后会出现错误

    error: Failed to push some refs to 'git@github.com:*.git'
    hint: Updates were rejected because the tip of your current branch is behind
    hint: its remote counterpart. Integrate the remote changes (e.g.
    hint: 'git pull ...') before pushing again.
    hint: See the 'Note about fast-forwards' in 'git push --help' for details.
  • 使用强制push的方法,因为这是只做页面浏览地址代码存放,所以不用担心远程修改的情况
    git push -f origin gh-pages 使用强制push就可以成功了

到项目的github页面将gh-pages分支设置为github的GitHub Pages页面

  1. 点击Settings,找到左侧Options一栏(就是认的),往下翻找到GitHub Pages在Source里面选择gh-pages branch,如果之前创建了gh-pages分支,这里应该认选择了这个分支
  2. 下次提交时,正常提交就可以了,记得切换到gh-pages分支提交

    git add .
    git commit -m 'push to branch'
    git push origin gh-pages

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐