Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 989 Bytes

CONTRIBUTING.md

File metadata and controls

48 lines (30 loc) · 989 Bytes

Contributing to BlockHub

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.

  1. 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
  2. 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"
  3. 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.