markdown 在github上创建gh-pages分支
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 在github上创建gh-pages分支相关的知识,希望对你有一定的参考价值。
### ways to publish githubp pages
[Configuring a publishing source for GitHub Pages](https://help.github.com/articles/configuring-a-publishing-source-for-github-pages/)
### create gh-pages branch
```
git checkout --orphan gh-pages # create and checkout to an orphan branch
git reset . # reset
git clean -fxd # remove all files without .git, but I don't know why it works
echo 'Hello world' > index.html # 新增一個 hello word 的 html 檔
git commit -m 'init' # commit
git push -u origin gh-pages # push
```
以上是关于markdown 在github上创建gh-pages分支的主要内容,如果未能解决你的问题,请参考以下文章
使用github存储在线图片供markdown文件使用
是否可以在 GitHub gist Markdown 的中心有一个表格?
markdown 如何在Github Markdown文件上添加公式
如何在 Github Flavored Markdown 中添加内联评论?
Markdown 表无法在 GitHub 页面上正确呈现
markdown [为github创建私人访问令牌] #github