Commands
list all branches
git branch -a
get the difference between two branches, including a local branch and a remote branch
git diff <mainbranch_path> <remotebranch_path>
list all branches
git branch -a
get the difference between two branches, including a local branch and a remote branch
git diff <mainbranch_path> <remotebranch_path>
Use the stack:set command via Heroku CLI:
heroku stack:set heroku-22 -a <app name>
Then rebuild your app to take effect of the change. You can create an empty commit to trigger a new build:
git commit --allow-empty -m "Upgrading to heroku-22"
git push heroku master
Build and start a local server
bundle exec jekyll serve
Browse your site by http://localhost:4000
read more