GitHub - kalliannhale/towardTreeEquity

it’s our summer project kick-off! here’s a brief command-line worksheet to help you clone, sync, and contribute to our project repo. don’t stress — we’ll walk through this together 🌱


✅ 1. clone the repo (first time only)

git clone <https://github.com/kalliannhale/towardTreeEquity.git>
cd towardTreeEquity

very important: if you’re experiencing troubles at this stage, it’s probably a typo. “cd” means “change directory” so you need to navigate to the correct folder


🧬 2. restore the R environment

open the project in RStudio and run:

renv::restore()

this installs the exact packages the project needs.


🔄 3. sync the latest changes

always do this before starting work:

git pull origin main


✍️ 4. add + commit your changes

git add .
git commit -m "💡 short but clear message about what you changed"


🚀 5. push your work to GitHub