如何用hugo搭建个人博客

如何用hugo搭建个人博客

第一步首先下载好Hugo(windows官方下载、macbrew install hugo)

第二步看文档进行操作

第三步进入hugo官网,点击Quick Start (Step 2 - Step 7)

hugo new site xxxx.github.io-generator
git init
git submodule add https://github.com/budparr/gohugo-theme-ananke.git themes/ananke(下载主题)
echo 'theme = "ananke"' >> config.toml(下载完以后运行)
hugo new posts/第一篇博客.md(posts/后面写博客的标题)

第四步用code打开文件code .(打开当前目录)

  1. 在vscode里面打开创建好的博客在里面编辑内容即可,写完以后把最上面的---里面的内容的draft:true 改成draft:false
  2. 进行配置主题 vscode ctrl + p 搜索config.toml
baseURL = "https://example.org/"
languageCode = "zh-Hans"(改成中文)
title = "xx的博客"
theme = "ananke"

第五步在运行hugo (新开一个终端运行,原来的不要动不然会关闭) 创建了一个public目录

第六步在vscode当前目录中新建一个.gitignore(在里面写入/public/)忽略掉public

第七进入cd publicgit initgit add .git commit -v

第八步上传

  1. GitHub新建一个仓库(必须是你的用户名)xxxx.github.io
  2. git remote add origin xxxx
  3. git push -u origin master

第九步在GitHub上的点开设置,下滑到GitHub pages下面有个点击即可

这样你的新博客就产生了

如果后面还需写博客步骤

  1. hugo new posts/xxxx.md
  2. 进入public
  3. git init
  4. git add .
  5. git commit -v
  6. git push

你可能感兴趣的:(如何用hugo搭建个人博客)