标签:修改 自己 class type HERE 依次 使用 博客 ejs
使用hexo搭建博客,并将博客部署到github
npm install -g hexo-cli
,安装hexohexo init
npm install
npm audit fix
和npm audit fix --force
hexo g
,生成博客hexo s
后,可以在 http://localhost:4000 上预览博客npm install hexo-deployer-git --save
,安装deployer-git,用来将hexo推送到github_config.yml
文件,将文件末尾的deploy部分更改如下,repo: 后填写你新建的github仓库的地址。注意: 请使用英文冒号以及冒号后要有空格deploy:
type: git
repo: https://github.com/Tuzilow/Tuzilow.github.io.git
branch: master
hexo clean
,hexo g
,hexo d
,即可在 https://username.github.io (username为你的用户名)中看到自己的博客hexo new "文章标题"
,会在\source\_posts
下生成一个md文件,在该文件中编辑文章即可hexo clean
,hexo g
,hexo d
,即可将文章发布成功,如果网站上没有出现文章可以稍等一会儿再刷新。标签:修改 自己 class type HERE 依次 使用 博客 ejs
原文地址:https://www.cnblogs.com/xueyubao/p/11438004.html