美文网首页
采用Jekyll + github + pygments构建个人

采用Jekyll + github + pygments构建个人

作者: 包红前当了回撤并让开我来 | 来源:发表于2016-04-27 14:04 被阅读0次

Create new repository

You'll need to create a repository named <strong>username.github.io</strong>.
The <strong>username</strong> must be your github name.
So as my repository sbzhu.github.io

Create new repository

Clone your new repository to local disk

git clone git@github.com:/sbzhu/sbzhu.github.io

Then a director named .git is about here.


Get other's jekyll template

You can get jekyll template from website like jekyll themes or just simply clone one from others github like this:

  • clone template jekyll to local

    git clone https://github.com/sbzhu/huxpro.github.io.git
    

Then you'll get a director named huxpro.github.io.git

  • Run this jekyll on localhost

    cd huxpro.github.io.git
    jekyll build
    jekyll serve
    
  • browse it with site : http://localhost:4000


Add template jekyll project to your repository

cp -r huxpro.github.io.git/!(.git) sbzhu.github.io/

Push this repository to github

git add -A
git commit -m 'initial version'
git push origin master

Enjoy you Github pages

Visit the website www.sbzhu.github.io



相关文章

网友评论

      本文标题:采用Jekyll + github + pygments构建个人

      本文链接:https://www.haomeiwen.com/subject/gccqrttx.html