York's Blog

使用Github和Hexo搭建自己的博客

  1. 使用命令行进入一个安全目录,比如cd ~/.Desktop或者cd ~/.Documents,(注意不要在根目录)
  2. 在 GitHub 上新建一个空 repo,repo 名称是「你的用户名.github.io」(请将你的用户名替换成真正的用户名)
  3. 命令行输入npm install -g hexo-cli,安装 Hexo
  4. 命令行输入hexo init myBlog
  5. 命令行输入cd myBlog
  6. 命令行输入npm i
  7. 命令行输入hexo new +你的博客标题,你会看到一个 md 文件的路径
  8. start xxxxxxxxxxxxxxxxxxx.md ,编辑这个 md 文件,内容自己想(Ubuntu 系统用xdg-open xxxxxxxxxxxxxxxxxxx.md
  9. 命令行输入start _config.yml ,编辑网站配置
    1. 把第 6 行的 title 改成你想要的名字
    2. 把第 9 行的 author 改成你的大名
    3. 把最后一行的 type 改成 type: git
    4. 在最后一行后面新增一行,左边与 type 平齐,加上一行 repo: 仓库地址 (请将仓库地址改为「你的用户名.github.io」对应的仓库地址,仓库地址以 git@github.com: 开头你知道吧?不知道?不知道的话现在你知道了)
    5. 第 4 步的 repo: 后面有个空格,不要眼瞎。
  1. 命令行输入npm install hexo-deployer-git --save,安装 git 部署插件
  2. 命令行输入hexo deploy
  3. 进入「你的用户名.github.io」对应的 repo,打开 GitHub Pages 功能,如果已经打开了,就直接点击预览链接
  4. 你现在应该看到了你的博客!

命令行

使用Github和Hexo搭建自己的博客

Proudly published with Hexo