Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.12 KB

CONTRIUBTING.md

File metadata and controls

27 lines (20 loc) · 1.12 KB

Contributing

Code

  1. Fork it (https://github.com/recanman/privacychan/fork).
  2. Create your feature branch (git checkout -b my-new-feature).
  3. Stage your files (git add .).
  4. Commit your changes (git commit -am 'commit message').
  5. Push to the branch (git push origin my-new-feature).
  6. Create a new pull request (https://github.com/recanman/privacychan/compare).

Commit messages

Please use the following format for your commit messages:

<type>: <description>

Verbs:

  1. feat – a new feature is introduced with the changes
  2. fix – a bug fix has occurred
  3. chore – changes that do not relate to a fix or feature and don't modify src or test files (for example updating dependencies)
  4. refactor – refactored code that neither fixes a bug nor adds a feature
  5. meta – updates to documentation and other non-source related files
  6. style – changes that do not affect the meaning of the code, likely related to code formatting such as white-space, missing semi-colons, and so on.
  7. revert – reverts a previous commit
  8. major - introduces a breaking change