- Fork this repo
- Clone YOUR fork into your Marcy Lab folder (this should be in Documents or Desktop)
git clone https://github.com/YOUR_USERNAME/DA2025_Lectures.git
- Navigate into the repo and add THIS repo as the upstream (this allows you to fetch changes from a parent repo)
git remote add upstream https://github.com/The-Marcy-Lab-School/DA2025_Lectures.git
- Fetch those changes/new lectures
git fetch upstream
- Merge the changes/new lectures into YOUR fork
git merge upstream/main -m "meaningful message
- Push and changes you make to lectures/notes back to YOUR fork (these will be your personal notes/changes)
git push origin main