搭建博客

【详细】 →→→ →→→5分钟 搭建免费个人博客

一、安装

1.Git
  • 安装git
  • 注册github
  • 创建仓库username.github.io
2.Nodejs
  • 安装nodejs,包含npm
3.使用npm安装Hexo
  • 右键Git Bush ,输入以下命令
npm install hexo -g6

二、编写博客

1.本地创建博客文件夹
hexo init username.github.io

创建出一个名为“username.github.io”的文件夹。

2.更改配置
  • 下载主题。官方主题
$ cd username.github.io
$ git clone https://github.com/iissnan/hexo-theme-next themes/next
  • 在username.github.io/_config.yml中修改键值对
    【键值之间必须有空格】
 title: title    //你博客的名字
 author: name  //你的名字
 language: zh-Hans    //语言 中文
 theme: next   //刚刚安装的主题名称
 deploy:
    type: git    //使用Git 发布
    repo: https://github.com/username/username.github.io.git    // 刚创建的Github仓库
3.写文章

在username.github.io/source/_posts下创建后缀为.md文件,用Markdown语法编写。

4.测试
hexo s

启动测试服务器,在浏览器中输入https://localhost:4000可访问本地博客
→→→ →→→ 端口冲突解决

三、发布

1.安装hexo-deployer-git自动部署发布工具【远程博客】
 npm install hexo-deployer-git -save

→→→ →→→ 使用Hexo搭建博客
否则下一步使用hexo d 命令时会出现以下错误:

2.发布

测试没问题就生成静态网页文件发布至Github pages 中。

hexo clean 
hexo g 
hexo d
3.访问

在浏览器中输入 http://username.github.io就能够访问了。

你可能感兴趣的:(搭建博客)