Skip to content
 
 

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 

Repository files navigation

First Contribution 🚀

Welcome! This repository is created to help beginners make their very first Open Source Contribution on GitHub in a friendly and beginner-safe environment.


🎯 What is this repository for?

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!


🛠️ Step-by-Step Contribution Guide

Follow these simple steps to make your contribution:

1. Fork this Repository

Click the Fork button at the top right of this page to create a copy of this repository under your GitHub account.

2. Clone Your Forked Repository

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)

3. Create a New Branch

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!

5. Commit and Push Your Changes

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

6. Submit a Pull Request (PR)

  1. Go to your fork repository page on GitHub.
  2. You will see a banner with a Compare & pull request button. Click it!
  3. Add a title (e.g., Add Alex to contributors) and a brief description.
  4. Click Create pull request! 🎉

🌟 See Who Has Contributed

Check out our growing list of contributors in CONTRIBUTORS.md!


📜 License

This project is open source and available under the MIT License.

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors