Skip to content

Latest commit

 

History

History
37 lines (29 loc) · 1.5 KB

CONTRIBUTING.md

File metadata and controls

37 lines (29 loc) · 1.5 KB

Contributing to the Member Portal

The member portal is an open source project and we would love to see contributions and pull requests from everyone interested. By participating in this project, you are agreeing to abide to our Code of Conduct.

There are many ways you can contribute to this project:

  • Writing code (if there is a specific issue you would like to work on, just let us know by commenting on the issue)
  • Suggesting features you would like to see implemented
  • Writing or editing documentation
  • Reporting bugs
  • Fixing bugs

To submit a pull request: For information on setting up the project dependencies, please go to the README.md

  1. Fork the project.
  2. Create a branch on your local machine.
git checkout -b your-branch-name
  1. Implement your feature or bug fix.
  2. Add, commit, and push your changes to your branch.
git push origin your-branch-name
  1. Submit a pull request for review.

Click to here the list of contributors who participated in this project.

After your PR is merged, you sweet open source contributor, you. You'll want to update your local branch like this:

git checkout master
git fetch --all
git rebase upstream/master