这个仓库放的是整个blog源站代码,而博客的静态文件代码则在gdutrdc/gdutrdc.github.io
另外一个仓库上。
每次写博客的时候都会通过master分支的代码生成静态文件然后部署到gdutrdc/gdutrdc.github.io
,所以无须关注gdutrdc/gdutrdc.github.io
上的代码,只要记得每次写完提交,防止别人pull代码时拉不到你写的博文,导致最终重新部署到gdutrdc/gdutrdc.github.io
的博文覆盖掉你写的博文。
git clone https://github.com/gdutrdc/blog-code.git
2 下载安装node,已经安装跳过此步骤
git clone https://github.com/yumemor/hexo-theme-primer.git
npm install hexo-cli -g
如果因为墙而安装不了,加一下淘宝的镜像
npm install hexo-cli -g --registry=https://registry.npm.taobao.org
npm install
安装不了同样加上镜像
npm install --registry=https://registry.npm.taobao.org
hexo new "写一篇博文试试"
10 打开你喜欢的编辑器,编辑这个md文件(md语法)
hexo g
将这篇md语法的文章生成对应的html文件
hexo s
hexo d
将其部署到github上
git add -A
git commit -m "test"
git push origin master