Create a new branch:
git checkout -b "$(date +%F)-update"
Create a new page:
hugo new speaking/my-wonderful-event.md
vim content/speaking/my-wonderful-event.md
Check locally that your changes are OK:
hugo server -D &
Commit your changes:
git add .
git commit -m "$(date +%F) update"
git push --set-upstream origin "$(date +%F)-update"
Go on GitHub and create a new pull request based on this new branch.
Netlify will provision a dedicated instance for this new pull request. The URL will be posted in a comment in the PR.
Check that the modifications are OK.
Merge the pull request
Delete the remote branch.
Change back to the master
branch locally:
git checkout master
git pull
Delete the old branch:
git branch -d "$(date +%F)-update"
You can update a theme to the latest version by executing the following command in the root directory of your project:
git submodule update --rebase --remote
mkdir -p static/css
hugo gen chromastyles --style=perldoc > static/css/chroma.css