如何用hugo 搭建博客
1,Hugo 简介搭建个人博客有很多开源的博客框架,我们要介绍的框架叫作 Hugo。Hugo 是一个基于Go 语言的框架,可以快速方便的创建自己的博客。Hugo 支持Markdown 语法,我们可以将自己的文章写成Markdown 的格式,…
# 初始化仓库
git init
# 将所有内容添加到git
git add .
# 提交到git 本地
git commit -m "我的博客第一次提交"
# 关联到远程git,注意这里需要写你自己的git 地址
git remote add origin https://github.com/codeshellme/codeshellme.github.io.git
# 推送到远程git
git push origin master