系统 Macbook Pro 10.13.6

一、环境搭建

1.1 替换默认源

第一步:替换brew.git

  • cd "$(brew --repo)"
  • git remote set-url origin https://mirrors.ustc.edu.cn/brew.git

第二步:替换homebrew-core.git

  • cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"
  • git remote set-url origin https://mirrors.ustc.edu.cn/homebrew-core.git

第三步:升级

  • brew update

1.2 替换Homebrew Bottles源

  • echo 'export HOMEBREW_BOTTLE_DOMAIN=https://mirrors.ustc.edu.cn/homebrew-bottles' >> ~/.bash_profile
  • source ~/.bash_profile

1.3 安装git

1.4 安装hugo,需要0.55以上

  • brew install hugo

二、创建博客

2.1 创建根目录

  • hugo new site myblog

2.2 下载主题

2.3 编写博客

  • hugo new post/first.md
  • 使用vs code编写markdown(本篇)
  • 在线调试 hugo server -t m10c --buildDrafts

2.4 修改标题

  • 本文件最上方的title
  • 根目录下的config.toml

三、挂到个人github上

3.1 github上建新仓

  • 点击右上角'+’ new repository
  • repository name: 自己github名字,全小写cold-eye.github.io
  • 点击create repository

3.2 部署

  • hugo --theme=m10c --baseUrl='https://cold-eye.github.io/' --buildDrafts 该命令会在根目录下生成一个public文件,并上传到github上
  • cd public
  • git init
  • git add .
  • git commit -m "hugo博客第一次提交"
  • git remote add origin https://github.com/cold-eye/cold-eye.github.io.git 本地public与github关联
  • git push -u origin master
  • 输入用户名cold-eye、密码***

打赏

微信 微信 支付宝 支付宝
万分感谢