A guide to making your first open-source contribution.
-
Fork a Repository
- Click the "Fork" button on the repository's GitHub page.
-
Clone the Repository
- Clone the forked repository to your local machine using:
git clone <repository-url>
- Clone the forked repository to your local machine using:
-
Make Changes
- Implement the necessary changes or add new features.
-
Stage the Changes
- Stage your changes using:
git add .
- Stage your changes using:
-
Commit the Changes
- Commit your changes with a descriptive message:
git commit -m "Describe your changes"
- Commit your changes with a descriptive message:
-
Push the Changes
- Push your changes to the forked repository:
git push
- Push your changes to the forked repository:
-
Create a Pull Request
- Go to the original repository on GitHub and click "New pull request".
-
Congratulations!
- You have created your first pull request. 🎉