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 🌱
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
open the project in RStudio and run:
renv::restore()
this installs the exact packages the project needs.
always do this before starting work:
git pull origin main
git add .
git commit -m "💡 short but clear message about what you changed"