Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.03 KB

File metadata and controls

30 lines (23 loc) · 1.03 KB

Contribution Guides

  1. Get Set up
  2. Test Your Changes
  3. Write Unit Tests
  4. Submit a PR
  5. Publish Your Changes

4. Submit a PR

  • On your local working branch (previously forked from main), commit your changes using a descriptive commit message
  • Push your fork to GitHub
  • In GitHub, create a pull request
  • If the reviewers suggest changes then:
    • Make the required updates in your local branch

    • Rebase from main after fetching the lastest version and force push to your GitHub repository (this will update your Pull Request):

      git fetch
      git rebase origin/main
      git push -f

Once all comments are resolved and your PR is approved (by at least 2 reviewers), you can merge it.

And voilà! Thank you for your contribution!