Skip to content
This repository was archived by the owner on Jun 3, 2025. It is now read-only.

Latest commit

 

History

History
68 lines (44 loc) · 2.06 KB

File metadata and controls

68 lines (44 loc) · 2.06 KB

Contributing to mini-snmpd

Thank you for considering contributing back to Free Software!

There are a few things we would like you to consider when filing an issue or pull request with this project:

  1. If you are filing a bug report or feature request

    Please take the time to check if an issue already has been filed matching your problem

  2. What version are you running, have you tried the latest release?

    UNIX distributions often package and test software for their particular brand. If you are using a pre-packaged version, then please file a bug with that distribution instead.

  3. Coding Style

    We use the Linux coding style, like GIT it is becoming the de facto standard for C programming

    https://www.kernel.org/doc/Documentation/CodingStyle

  4. Commit messages

    See this helpful guide for how to write simple, readable commit messages.

    http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html

Example

Capitalized, short (50 chars or less) summary

More detailed explanatory text, if necessary.  Wrap it to about 72
characters or so.  In some contexts, the first line is treated as the
subject of an email and the rest of the text as the body.  The blank
line separating the summary from the body is critical (unless you omit
the body entirely); tools like rebase can get confused if you run the
two together.

Write your commit message in the imperative: "Fix bug" and not "Fixed bug"
or "Fixes bug."  This convention matches up with commit messages generated
by commands like git merge and git revert.

Further paragraphs come after blank lines.

- Bullet points are okay, too

- Typically a hyphen or asterisk is used for the bullet, followed by a
  single space, with blank lines in between, but conventions vary here

- Use a hanging indent

Signed-off-by: Some Namesson <user@example.org>