This repository serves as an interactive learning environment where Temple students can practice fundamental Git workflows including:
- Cloning repositories
- Creating and switching branches
- Making commits
- Opening pull requests
- Resolving merge conflicts
- Collaborating with other developers
This template provides structured exercises that progressively build your Git skills. By completing these challenges, you'll gain practical experience with the tools and workflows used by software professionals every day.
Fork this template to run your own Git workshops! The repository includes instructor notes and a complete workshop plan to help you guide students through a successful learning experience.
Version control is an essential skill for any developer. This workshop introduces students to industry-standard practices in a supportive, hands-on environment. Whether you're new to coding or looking to refine your workflow, these exercises will help you collaborate more effectively on software projects.
TUDev is Temple University's student organization of hackers and makers. We host workshops, hackathons, and other events to help Temple students build technical skills and connect with the tech community.
- Fork this repository.
- Clone your fork locally:
git clone <forked-repo-url>
. - Open the
index.html
file in your browser to view the website.
- Create a new branch for your feature:
git checkout -b feature-name
. - Make your changes and commit them:
git commit -m "feat: add new feature"
. - Push your branch:
git push origin feature-name
. - Open a pull request for review.
This project is licensed under the MIT License.