Serve Locally with bundle exec jekyll serve
Create incremental build with bundle exec jekyll serve --incremental
Visit the given localhost:port
Check repo status at any time
git status
Updated remote from a different device?
Pull it to local with
git pull
Track changed files
git add .
Add a commit message
git commit -m "Your Message Here"
Mistake? Append the message
git commit --amend -m "Updated commit message"
Push changes to remote repo
git push