Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 1.08 KB

README.md

File metadata and controls

39 lines (29 loc) · 1.08 KB

Portfolio

My github user page(https://s-horiguchi.github.io) is generated by Hugo, a static site generator written in Go.

This is the main repository for this site.

How to update the site

Ref: https://gohugo.io/hosting-and-deployment/hosting-on-github/

  1. Edit the source codes
  2. Check it on the local server
$ hugo server -D -t resume
  1. Clear & Build static pages
$ rm -rf public/*
$ hugo -t resume
  1. Publish the generated pages
$ cd public
$ git add .
$ git commit -m "hoge"
$ git push -u origin master
  1. Commit the changes in source code for this repository(portfolio) and hugo-resume repo.

That's all!