Welcome to the Simple Contribution project! 🎉
Here is a step-by-step guide to making your first contribution to this project. If you're new to GitHub, this guide will help you understand the basics of contributing and getting involved in the open-source community.
To make changes to this project, you first need to create your own copy by forking the repository. Simply click the Fork button at the top-right of this page.
Once you have forked the repository, clone your fork to your local machine by running the following command in your terminal:
git clone https://github.com/your-username/simple-contribution.git
- Open the cardDetails.json file in your code editor.
- Add a new entry to the JSON file with your details. Simply copy the format below and modify it with your own details:
{
"name": "Your Name",
"profession": "Your Profession",
"quote": "\"Your favourite quote\" - Said by You",
"github": "https://github.com/yourusername",
"linkedin": "https://linkedin.com/in/yourprofile",
"email": "mailto:youremail@example.com"
}
Make sure you do not remove anyone else's details—just add yours below the existing entries.
After adding your details, you need to save the changes and commit them to your forked repository:
git add cardDetails.json
git commit -m "Added my details"
Now that your changes are committed, push them to your remote GitHub repository:
git push origin main
Once your changes are pushed to your forked repository on GitHub, navigate to your fork on GitHub, and click on the New Pull Request button. Write a meaningful description of your contribution and submit the PR.
That's it! 🎉 Once your pull request is reviewed and merged, your details will be live on the Simple Contribution website!
Thank you for contributing!