环境
github+hexo搭建个人博客
安装环境
- 安装nodejs
前往nodejs官网下载安装
链接-http://nodejs.cn/download/ - 安装hexo
npm install -g hexo-cli(建议安装淘宝cnpm更快你懂的~)
- 创建博客文件夹
mkdir blog
如图:
初始化hexo
打开命令行进入创建好的blog命令行开始操作~
hexo init小操作
hexo n 博客标题:创建文章
hexo clean | g(生成) | s(本地服务)安装插件
npm install –save hexo-deployer-git
修改_config.yml文件
deploy:
type: ‘git’
repo: ‘https://github.com/Tab-Tan/Tab-tan.github.io.git'
branch: ‘master’远程部署
hexo d