Git and Hugo Common Commands

git log

git status

git add -A .

git commit -m ‘Initial commit’

git remote -v

git remote remove origin

git remote add origin https://github.com/stone0351/stone0351.github.io

git push -u origin master

git pull origin

git merge origin/master


hugo server –disableFastRender

// update the public files

hugo -t <theme name>

e.g. hugo -t Tale

================================================================================

End