1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| quick start
先安装npm 和 nodejs、以及git sudo apt-get install git-core (linux)
npm 和nodejs去官网下载
开始安装hexo npm install -g hexo-cli
开启blog hexo init blog cd blog hexo server hexo new "new wenzhang" hexo generate #生成静态文档 hexo d #部署到github /* 在_config.yml文件里的deploy下改为 deploy: type: git repo: https://github.com/qahehe/qahehe.github.io.git branch: master */ ssh -T git@github.com #判断是否出问题
切换主题 在blog文件夹下(hexo根目录) git clone https://github.com/litten/hexo-theme-yilia.git themes/yilia
修改 _config.yml文件里的theme 为 theme: yilia
|