A small, safe practice repository for the Git Basics course.
Use this repository to practice the Git/GitHub collaboration loop with realistic analyst work:
- Pull the latest changes.
- Create a branch.
- Edit a SQL query, data dictionary, or analysis note.
- Review your changes with
git statusandgit diff. - Stage and commit a small change.
- Push your branch to GitHub.
- Open a pull request.
- Respond to review feedback.
- Merge and sync your local
mainbranch.
queries/ Example SQL files using fictional tables
analysis-notes/ Short notes about query intent and findings
data-dictionary/ Plain-language definitions for fictional fields
troubleshooting/ Notes for common Git and SQL practice issues
This repository uses fictional data structures only. Do not add:
- real client, patient, or participant data
- credentials, passwords, tokens, or connection strings
- private server names or internal hostnames
- screenshots containing private information
Open queries/01-count-visits.sql and make a small improvement, such as adding a comment that explains what the query counts.
Then use the course checklist to commit, push, and open a pull request.