Welcome to the Open Source Practice Repository! This is a space for you to learn the ropes of contributing to open-source projects. Whether you're a newbie or an experienced developer, this repo will guide you through the process.
If you are new to open source or hacktoberfest and want to learn more, check out The Beginners Guide to Hacktoberfest.
- Click the "Fork" button in the upper right corner of this repository's page. This will create a copy of the repo in your GitHub account.
- Go to your forked repo on your GitHub account.
- Click the "Code" button and copy the repository URL.
- Open your terminal or command prompt.
- Navigate to the directory where you want to store your local copy.
-
Run the following command, replacing
<repository-url>
with the URL you copied:git clone <repository-url>
-
Navigate to the repository folder on your local machine:
cd open-source-practice-repo
-
Create a new branch for your contribution. Give it a descriptive name:
git checkout -b add-john-doe
- Now you can make your changes or additions to the project.
-
Inside the
contributors
folder, you'll find a file namednames.md
. Open it. -
Add your name to the file in alphabetical order under the respective section (A, B, C, etc.). Follow the format:
- [Your Name](https://your-website-or-profile-link)
-
Save your changes in the
names.md
file:git add .
-
Commit your changes with a meaningful message:
git commit -m "Add [Your Name] to contributors"
-
Push your changes to your GitHub fork:
git push origin add-john-doe
- Go to your forked repository on GitHub.
- Click the "Pull Request" button.
- Follow the prompts to create your pull request.
Please review our Code of Conduct before participating. We expect all contributors to adhere to it.
This project is licensed under the MIT License - see the LICENSE.md file for details.
Happy contributing! 🚀