Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 904 Bytes

CONTRIBUTION.md

File metadata and controls

44 lines (34 loc) · 904 Bytes

👨‍🏫Contribution Guide

  1. Fork the Repository by clicking on the symbol at the top right corner.

  2. Clone the forked Repository in your local System.

    git clone https://github.com/your_user_name/leetCode-Solution.git
  3. Check that your fork is the "origin" remote.

    git remote add origin URL_OF_FORK
  4. Add the project repository as the "upstream" remote.

    git remote add upstream URL_OF_FORK
  5. Create a new Branch:

    git branch  -YourBranchName-
    git checkout  -YourBranchName-
  6. Make your contributions.

  7. Stage your changes and make a commit.

    git add .
    git commit -m "<your_commit_message>"
  8. Push your local commits to the remote Repository.

    git push origin -YourBranchName-
  9. Create a PR.