Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 1.55 KB

CONTRIBUTING.md

File metadata and controls

38 lines (27 loc) · 1.55 KB

CONTRIBUTING

Contributions are always welcome and we appreciate.

Prerequisites

Create a branch

  • cd react-ui-hooks
  • git checkout master from any folder in your local react-ui-hooks repository.
  • git pull origin master to ensure you have the latest main code.
  • git checkout -b name-of-my-branch to create a branch.

Create new approaches or make changes

  • Make the changes or create a new Hook (Detailed explanation can be found at How to Create a Hook).
  • Save the files and check in the browser.
  • Make the tests.
  • Check if the tests are all passing npm test.

Push it

  • git add .
  • git commit -m "My message" (replacing My message with a commit message like It creates a new amazing React ui hook) to stage and commit your changes
  • git push my-fork-name name-of-my-branch
  • Go to the react-ui-hooks repo and you should see recently pushed branches.
  • Follow GitHub's instructions.
  • If possible, include screenshots of visual changes.

After you have submitted your pull request, we'll try to get back to you as soon as possible. We may suggest some changes or improvements.

Thank you for contributing!