如何用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 .
(打开当前目录)
- 在vscode里面打开创建好的博客在里面编辑内容即可,写完以后把最上面的---里面的内容的
draft:true
改成draft:false
- 进行配置主题 vscode ctrl + p 搜索
config.toml
baseURL = "https://example.org/"
languageCode = "zh-Hans"(改成中文)
title = "xx的博客"
theme = "ananke"
第五步在运行hugo
(新开一个终端运行,原来的不要动不然会关闭) 创建了一个public目录
第六步在vscode当前目录中新建一个.gitignore(在里面写入/public/)忽略掉public
第七进入cd public
在git init
,git add .
、git commit -v
第八步上传
- GitHub新建一个仓库(必须是你的用户名)xxxx.github.io
git remote add origin xxxx
git push -u origin master
第九步在GitHub上的点开设置,下滑到GitHub pages下面有个点击即可
这样你的新博客就产生了
如果后面还需写博客步骤
- hugo new posts/xxxx.md
- 进入public
- git init
- git add .
- git commit -v
- git push