Welcome! This repository is created to help beginners make their very first Open Source Contribution on GitHub in a friendly and beginner-safe environment.
Making your first pull request can feel intimidating. This repository gives you a simple sandbox to practice the standard Git & GitHub workflow without worrying about breaking anything!
Follow these simple steps to make your contribution:
Click the Fork button at the top right of this page to create a copy of this repository under your GitHub account.
Open your terminal and clone your fork to your computer:
git clone https://github.com/<your-username>/first-contribution.git
cd first-contribution(Replace <your-username> with your actual GitHub username)
Create and switch to a new branch for your changes:
git checkout -b add-your-name(Use a descriptive branch name like add-alex-dev)
4. Add Yourself to CONTRIBUTORS.md
Open CONTRIBUTORS.md in your favorite code editor and add your details at the end of the list:
- **Name:** Your Name
- **GitHub:** [@yourusername](https://github.com/yourusername)
- **Message:** A short line about your tech goals or favorite stack!Stage your modified file, commit your changes, and push your branch to GitHub:
git add CONTRIBUTORS.md
git commit -m "docs: add <Your Name> to contributors"
git push origin add-your-name- Go to your fork repository page on GitHub.
- You will see a banner with a Compare & pull request button. Click it!
- Add a title (e.g.,
Add Alex to contributors) and a brief description. - Click Create pull request! π
Check out our growing list of contributors in CONTRIBUTORS.md!
This project is open source and available under the MIT License.