Here are all the notebooks used during study groups!
If you're getting this repo for the first time:
- FORK and clone this repository (make sure it is the HTTPS url!)
git clone https://github.com/[yourusername]/studygroups-051721ft.git
- Add THIS
/yishuen/
version as the upstream (to pull future changes)
git remote add upstream https://github.com/yishuen/studygroups-051721ft.git
- After making changes, remember to push your changes to your forked version of the repo:
git add .
git commit -m 'message here'
git push
- Make sure your remote is updated with your local changes!
Either do git status
to check that everything is up to date, and if not:
git add .
git commit -m 'message here'
git push
- Fetch the changes from my upstream
git fetch upstream
- Merge new changes onto your local repo
git merge upstream/main -m 'what you updated'
- Push the new notes to your remote repo
git push