1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
Basic Details
=============
If you would like to contribute to the development of Guake, here are some general information.
Found a Bug?
------------
Before opening a new issue, please read the following:
- A `Bountysource page <https://www.bountysource.com/teams/guake>`_ exists for
requesting new features for Guake.
- before opening **a new bug**, please search for a similar one in the
`GitHub Issues <https://github.com/Guake/guake/issues>`_ .
Submitting a Pull Request
-------------------------
Please follow these steps before submitting a new Pull Request to Guake:
- rebase on latest HEAD with ``git pull rebase upstream master``
- describe your change in the pull request
- execute the code styling, checks and unit tests using:
``$ make style check reno-lint test``
- add a slug in release note using ``$ make reno SLUG=<short_name_of_my_feature>``
and edit the created file in `releasenotes/notes/`.
You can see how `reno` works using `pipenv run reno --help`.
Please use a generic slug (eg, for translation update, use `translation`)
|