Local -> Remote commands:
- `git add FILENAME`: adds file from working directory to staging
- `git commit -m "COMMIT_MESSAGE"`: commits modified files in staging to local repo
- `git push`: pushes current branch's local repo changes to remote repo
Remote -> Local commands:
- `git fetch`: fetches current branch's remote repo changes to local repo
- `git pull`: pulls current branch's remote repo changes to working directory