创建个人博客
借助GitHub Pages平台,基于Hexo制作一个简洁优雅的个人博客

开通GitHub账号
学习Git的基本使用
- Git的客户端下载和安装:https://git-scm.com/downloads
- Git的基础命令
git –version
git clone https://www.github.com/xxx.git
git status
git add .
git commit -m update
git push - 完成一个Repo的创建
学习Hexo的基本使用
Hexo官网:https://hexo.io
npm install hexo-cli -g
hexo init blog
cd blog
npm install
hexo server
学习NodeJS的基本使用
- NodeJS客户端下载和安装:https://nodejs.org/en/download/prebuilt-installer
- NodeJS 与 NPM的管理,检查当前版本
node -v
npm -v - 安装各类NPM库
npm install hexo-cli -g
npm install hexo-deployer-git –save
效果呈现、

