NOTE
This is for beginners looking to contribute to an Open-Source Project. Veterans can always feel free skip the part.😎
⛳Hello contributors, follow these steps to land-up to your first contribution.
-
Fork & Clone Repository:
- Click the fork button on the top right of the repository page.
- Now clone the forked repo from your profile.
git clone https://github.com/your_username/BlockHub.git
-
Making Changes and Commits:
- Create a new branch
git checkout -b <new_branch_name>
- Stage files after making necessary file changes
git add . OR git add file_1,file_2,...
- Make commit
git commit -m "message describing the change"
-
Opening a Pull Request(PR):
- Push your changes to your forked repository.
git push origin <your_feature-branch_name>
- Submit a pull request to the main repository for review.