Project resources and guided projects for learning data analysis with Python — from basic exploration to visualization.
Welcome! This guide will walk you through setting up Git and GitHub so you can track your progress and submit assignments effectively.
If you don’t already have one, sign up here: 👉 https://github.com
- Visit the instructor's GitHub repo (we will provide the link).
- Click the "Fork" button (top-right) to create your copy of the repository.
git clone https://github.com/<your-username>/<repo-name>.git
cd <repo-name>This allows you to get updates from the instructor.
git remote add upstream https://github.com/<instructor-username>/<repo-name>.gitgit checkout -b assignment-1Replace assignment-1 with the relevant task name.
After completing your work:
git add .
git commit -m "Completed assignment 1"
git push origin assignment-1git pull upstream mainThis pulls the latest updates from the instructor’s main branch.
- Commit regularly with clear messages.
- Keep your branches tidy.
- Ask questions by opening an issue in your forked repo (optional).
You're all set! 🎉 Now go ahead and start coding!