github pages 博客搭建

github提供了静态博客服务,下面介绍下怎么简单的使用

第一步:注册github账号,例如colanicy

第二步:建立一个空的仓库,仓库名为:colanicy.github.io

github pages 博客搭建_第1张图片

github pages 博客搭建_第2张图片

第三步:clone这个空仓库到本地(建议使用cmder)

git clone http://github.com/colanicy/colanicy.github.io

第四步:找一个github支持的静态博客模板放到空仓库中

github pages 博客搭建_第3张图片

下载模板

git clone https://github.com/mmistakes/jekyll-theme-basically-basic.git

拷贝模板内容到colaniy.github.io中

cd colanicy.github.io
xcopy theme /s

第五步:修改模板,并完成个性化

第六步:上传到远程仓库

git add --all
git commit -m "Initial commit"
git push -u origin master

第七步:通过colaniy.github.io访问你的博客

你可能感兴趣的:(技术类)