Skip to content

Latest commit

 

History

History
187 lines (125 loc) · 6.98 KB

CONTRIBUTING.md

File metadata and controls

187 lines (125 loc) · 6.98 KB

CONTRIBUTING GUIDELINES

Here are some guidelines for people who want to contribute their code to this software.

Make separate commits for logically separate changes.

Run the pre-commit checks before committing

  • garden check

Write tests

When adding new features or fixing defects, extend the unit tests to cover the new behavior. See the tests/ directory for examples. Find an appropriate test suite and extend it whenever possible.

Be picky about whitespace

This project is very picky about code style. The style here is the standard Python PEP-8 style:

https://www.python.org/dev/peps/pep-0008/

  • Use the garden fmt command to format the source code using cercis.

  • Follow the same style as the existing code.

  • Use 4-space indents.

  • Use variable_names_with_underscores AKA "snake case" naming. No camelCase. The only exception is when overriding Qt functions.

  • Do not introduce trailing whitespace. The "Diff" viewer displays trailing whitespace in red, or you can use "git diff --check".

  • If you use SublimeText, configure newline_at_eof_on_save to true.

  • Avoid "No newline at end of file" in your diffs.

Describe your changes well.

The first line of the commit message should be a short description (50 characters is the soft limit, see DISCUSSION in git-commit(1)), and should skip the full stop. It is also conventional in most cases to prefix the first line with "area: " where the area is a filename or identifier for the general area of the code being modified, e.g.

  • push: allow pushing to multiple remotes

  • grep: allow passing in command-line arguments

If in doubt which identifier to use, run "git log --no-merges" on the files you are modifying to see the current conventions.

The body should provide a meaningful commit message, which:

  • explains the problem the change tries to solve, in other words, what is wrong with the current code without the change.

  • justifies the way the change solves the problem, in other words, why the result with the change is better.

  • alternate solutions considered but discarded, if any.

Describe your changes in imperative mood, e.g. "make xyzzy do frotz" instead of "[This patch] makes xyzzy do frotz" or "[I] changed xyzzy to do frotz", as if you are giving orders to the codebase to change its behaviour. Try to make sure your explanation can be understood without external resources. Instead of giving a URL to a mailing list archive, summarize the relevant points of the discussion.

If you like, you can put extra tags at the end:

  • "Reported-by:" is used to credit someone who found the bug that the patch attempts to fix.

  • "Acked-by:" says that the person who is more familiar with the area the patch attempts to modify liked the patch.

  • "Reviewed-by:", unlike the other tags, can only be offered by the reviewer and means that she is completely satisfied that the patch is ready for application. It is usually offered only after a detailed review.

  • "Tested-by:" is used to indicate that the person applied the patch and found it to have the desired effect.

You can also create your own tag or use one that's in common usage such as "Thanks-to:", "Based-on-patch-by:", or "Helped-by:".

Sign your work

To improve tracking of who did what, we've borrowed the "sign-off" procedure from the Linux kernel project on patches that are being emailed around. Although core Git is a lot smaller project it is a good discipline to follow it.

The sign-off is a simple line at the end of the explanation for the patch, which certifies that you wrote it or otherwise have the right to pass it on as an open-source patch. The rules are pretty simple: if you can certify the below:

Developer's Certificate of Origin 1.1

By making a contribution to this project, I certify that:

(a) The contribution was created in whole or in part by me and I have the right to submit it under the open source license indicated in the file; or

(b) The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate open source license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same open source license (unless I am permitted to submit under a different license), as indicated in the file; or

(c) The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it.

(d) I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the open source license(s) involved.

then you just add a line saying

Signed-off-by: Random J Developer [email protected]

This line can be automatically added by Git if you run the git-commit command with the -s option, or using the Ctrl+i hotkey in git-cola's commit message editor.

Notice that you can place your own Signed-off-by: line when forwarding somebody else's patch with the above rules for D-C-O. Indeed you are encouraged to do so. Do not forget to place an in-body "From: " line at the beginning to properly attribute the change to its true author (see (2) above).

Also notice that a real name is used in the Signed-off-by: line. Please don't hide your real name.

Reporting Bugs

Please read How to Report Bugs Effectively for some general tips on bug reporting.

Internationalization and Localization

Git Cola is translated to several languages. When strings are presented to the user they must use the N_('<string>') function so that <string> is translated into a localized string.

The translation message files are the *.po files in the cola/i18n/ directory. Adding a new translation entails creating a new language-specific .po file.

Please note - it is preferred that git command jargon will be left untranslated.

When new (untranslated) strings are added to the project, the git-cola.pot base template and the language-specific message files need to be updated with the new strings.

To regenerate git-cola.pot and update .po files with new strings run:

garden pot

This will update .po files with untranslated strings which translators can use to translate git-cola.

Untranslated strings are denoted by an empty "" string.

Alternate translations can be tested by setting $LANG when running, e.g.

env LANG=zh_TW ./bin/git-cola

The Gettext Language Code corresponds to the .po filename. Country-specific suffixes use the Gettext country code.

We happily welcome pull requests with improvements to git-cola's translations.

Fork the repo on Github and create a pull request.