/blog

Primary LanguageHTML

dev

hugo server --disableFastRender

init

git checkout --orphan gh-pages
git reset --hard
git commit --allow-empty -m "Initializing gh-pages branch"
git push origin gh-pages
git checkout master

build

hugo

deploy

cd public
git add .
git commit -m "update public"
git push --force origin gh-pages
cd ..