Welcome to the TCET Open Source Git-GitHub Workshop! 🚀
This repository is designed to help you get started with version control using Git and GitHub. Whether you're a beginner or looking to refresh your knowledge, we've got you covered.
Git is a distributed version control system that helps you track changes in your project's source code over time. It allows multiple contributors to collaborate on a project efficiently.
GitHub is a web-based platform that provides Git repository hosting, collaboration tools, and a community of developers to help manage your Git projects. It makes working with Git easier and more accessible.
- Fork this Repository: Click the "Fork" button at the top right of this page to create your copy of the repository. This will allow you to make changes without affecting the original.
-
Clone your Fork: After forking, open your forked repository and click the "Code" button. Copy the repository URL. Then, open your terminal and run the following command, replacing
[your-username]
with your GitHub username:git clone https://github.com/[your-username]/TCET-Open-Source-Workshop.git
Commit Your Name: Open the name.html
file, and add your name to the list of contributors. Then, commit your changes with the following commands:
git add name.html
git commit -m "Added [Your Name] to the contributors"
git push
Create a Pull Request: Go back to your forked repository on GitHub, and you'll see a green "Compare & Pull Request" button. Click it to create a pull request to the original repository. Your contribution will be reviewed and merged!
We believe in the power of open source collaboration. By participating in this workshop, you're not only learning but also contributing to the global open source community. Every contribution counts!