You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CONTRIBUTING.md 982 B

123456789101112131415161718192021
  1. # Contributing
  2. If you would like to support this project, you have an interesting idea how to improve the operation of this tool or if you found some errors - do fork this add your fixes and add pull-request of your branch to the **master branch**.
  3. ## Signature of commit
  4. Moving forward all commits to this project must include a "signed-off-by" line indicating the name and email address of the contributor signing off on the change. To enable signatures add the following lines to `.git/hooks/prepare-commit-msg` :
  5. ```
  6. SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/- signed-off-by: \1/p')
  7. grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"
  8. ```
  9. ## Pull requests
  10. When creating pull request, please heed the following:
  11. - Base your code on the latest master branch to avoid manual merges
  12. - Code review may ensue in order to help shape your proposal
  13. - Explain the problem and your proposed solution
  14. - One-line description - please don't continue the description on new lines