Skip to content

Latest commit

 

History

History
43 lines (26 loc) · 1022 Bytes

CONTRIBUTING.md

File metadata and controls

43 lines (26 loc) · 1022 Bytes

Contributing to GitHub Beginner Guide 🚀

Thank you for your interest in contributing! Follow these steps to make your first contribution:

1. Fork the Repository

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

2. Clone the Repository

Clone your fork to your local machine:

git clone [email protected]:your-username/github-beginner-guide.git

3. Create a New Branch

git checkout -b add-your-name

4. Make Your Changes

Open the CONTRIBUTORS.md file and add your name to the list.

5. Commit and Push Your Changes

Save your changes, commit them, and push to your fork:

git add CONTRIBUTORS.md
git commit -m "Added my name to CONTRIBUTORS.md"
git push origin add-your-name

6. Create a Pull Request

Go to your fork on GitHub and click "Compare & pull request." Submit your pull request, and you're done! 🎉

We'll review your PR and merge it as soon as possible.

Thanks for contributing! 😄