Everything in one place. Print this out or bookmark it!
git status
git diff
git add .
git commit -m "msg"
git push
git pull
git log --oneline
git branch
git checkout -b name
git checkout name
git merge name
git branch -d name
git push -u origin name
git checkout -- file
git reset HEAD file
git reset --soft HEAD~1
git stash
git stash pop
cd folder
cd ..
cd ~
pwd
ls
ls -la
# find files containing "TODO"
# what's using port 3000
# show disk usage
# compress this folder
# explain this error
# undo my last commit
# create a .gitignore
# list running processes
npm install
npm install pkg
npm install -D pkg
npm run script
npm run dev
npm run build
mkdir name
touch name
cp source dest
mv source dest
rm file
rm -rf folder