发送博客

新建博客markdown文件,并编辑博客内容(文件名为 **.md )

cd K:/blog/myblog 
hugo new post/newBlog.md

生成静态页面

hugo --theme=m10c --buildDrafts --baseUrl="https://yangjinhaoaa.github.io/"

发布(就是同步到github的过程)

cd public
git add .
git commit -m "new blog added"
git pull --rebase origin master
git push -u origin master 
cd..

博文中插入图片

将图片存到下面目录 /static/images/下
markdown中添加

![Snipaste_2019-11-08_20-43-48](/images/Snipaste_2019-11-08_20-43-48.jpg)

END