Practice repository for the IEEE DBIT CS Open Source Contribution Workshop.
This repository is a practice ground for making your very first open source contribution. We're excited to have you here!
➡️ Looking for the workshop slides? You can find the full presentation at this link. ⬅️ (Remember to replace the link above with the actual URL to your slides repository!)
Your goal is to add your name to the CONTRIBUTORS.md file in this project by creating a Pull Request.
-
Fork this repository to your own GitHub account by clicking the "Fork" button at the top right of this page.
-
Clone your forked repository to your local machine.
git clone [https://github.com/YOUR_USERNAME/ieee-dbit-cs-first-contribution.git](https://github.com/YOUR_USERNAME/ieee-dbit-cs-first-contribution.git) cd ieee-dbit-cs-first-contribution(Replace
YOUR_USERNAMEwith your actual GitHub username.) -
Create a new branch for your changes. A good branch name is descriptive.
git checkout -b add-your-name
-
Edit the
CONTRIBUTORS.mdfile: Open theCONTRIBUTORS.mdfile and add your name and GitHub profile link to the bottom of the list.- Format:
- [Your Full Name](https://github.com/your-username)
- Format:
-
Stage and Commit your changes with a clear message.
git add CONTRIBUTORS.md git commit -m "feat: Add [Your Name] to contributors list" -
Push your new branch to your forked repository on GitHub.
git push origin add-your-name
-
Create a Pull Request: Go to your forked repository on GitHub. A "Compare & pull request" button will appear. Click it, add a title, and submit your pull request!
Once your Pull Request is reviewed and merged by a workshop mentor, you will officially be an open source contributor!