通过 npm 安装 Hexo 并初始化;将 Hexo 文件夹与 Git 账号关联;添加新文件;编译 Hexo 文件。
安装 Hexo
安装 nvm
1curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash安装 node.js
1nvm install stable安装 Hexo
12npm install -g hexo-npm install hexo --save
初始化 Hexo
初始化
1hexo init安装插件
1234567npm install hexo-server --savenpm install hexo-deployer-git --savenpm install hexo-deployer-heroku --savenpm install hexo-deployer-rsync --savenpm install hexo-deployer-openshift --savenpm install hexo-renderer-marked@0.2 --savenpm install hexo-renderer-stylus@0.2 --save
关联 Git
创建Github上个人主页存放仓库,库名“
/ .github.io”,访问地址“https:// .github.io” 修改 _config.yml 文件
1234deploy:type: gitrepository: https://github.com/shanergang/shanergang.github.io.gitbranch: master
添加新文件
- 根据模板,新建md文件,自动存放在_posts目录下。1hexo new <template name> "<file name>" #新建文章
编译
编译 Hexo
1hexo generate生成主页
1hexo deploy本地预览
1hexo server