Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 1.57 KB

CONTRIBUTING.md

File metadata and controls

16 lines (14 loc) · 1.57 KB

How to make a contribution

Never made an open source contribution before? Wondering how contributions work in our project? Here's a quick rundown!

  1. Fork this repository to your own GitHub account. This means that you will have a copy of the repository under your-GitHub-username/repository-name.
  2. Clone the repository to your local machine using git clone https://github.com/your-GitHub-username/express-http-context.git.
  3. Create a new branch for your changes using git checkout -b branch-name-here.
  4. Make the appropriate changes for the issue you are trying to address or the feature that you want to add.
  5. Add tests for new code. If you are submitting a bug fix, consider writing the test first. A good test will fail until your finish writing the fix.
  6. If this is your first time contributing to this project, feel free to add your name to the bottom of the README. :D
  7. Commit your changes and push them to your fork.
  8. Submit a pull request from your fork to skonves/express-http-context. The title should be a short description of the changes you made.
  9. In the description of your pull request, explain the changes that you made, any issues you think exist with the pull request you made, and any questions you have for the maintainer. It's OK if your pull request is not perfect (no pull request is), the reviewer will be able to help you fix any problems and improve it!
  10. Wait for the pull request to be reviewed by a maintainer.
  11. Make changes to the pull request if the reviewing maintainer recommends them.
  12. Celebrate your success after your pull request is merged!