1
0
mirror of https://github.com/trimstray/iptables-essentials synced 2024-07-01 03:00:57 +00:00
iptables-essentials/CONTRIBUTING.md
trimstray eea3fc2d54 fixed typos
- signed-off-by: trimstray <trimstray@gmail.com>
2019-03-01 07:58:45 +01:00

906 B

Contributing

If you would like to support this project, have an interesting idea how to improve the operation of this tool, or if you found some errors - fork this, add your fixes, and add a pull request of your branch to the master branch.

Signature of commit

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 :

SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/- signed-off-by: \1/p')
grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1"

Pull requests

When creating a pull request, please heed the following:

  • Base your code on the latest master branch to avoid manual merges
  • Code review may ensue in order to help shape your proposal
  • Explain the problem and your proposed solution