MyWebsite Bootstrap

Tag: useful commands

Some useful git commands

2024-04-21

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>

read more

Some useful tips for Heroku

2022-08-06

Upgrading stack of an app

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

read more

Raspberry Pi commands

2022-06-28

Commands

Install the “at” package
sudo apt-get update
sudo apt-get install at

read more

Jekyll local test commands

2022-04-03

Test commands

Build and start a local server

bundle exec jekyll serve

Browse your site by http://localhost:4000

read more