Contributing guidelines - 2021-12-20 - version 1 (subject to revision/consolidation)
The geoflow project openly welcomes contributions (bug reports, bug fixes, code enhancements/features, etc.). This document will outline some guidelines on contributing to geoflow
. As well, the geoflow discussions is a great place to get an idea of how to connect and participate in geoflow community, and it should be used primarily for questions regarding the use of geoflow.
geoflow has the following modes of contribution:
- GitHub Commit Access
- GitHub Pull Requests
Contributors to this project are expected to act respectfully toward others in accordance with the geoflow code of conduct.
Contributors are asked to confirm that they comply with the geoflow project MIT license and underlying guidelines.
- proposals to provide developers with GitHub commit access shall be discussed first by contacting the geoflow author/maintainer. Proposals shall be approved by the geoflow author and associated geoflow developers responsible of specific geoflow
actions
. Committers shall be added by the project admin. - Direct commit access shall be granted only after significant amount of code / pull requests have been contributed by the developer, and when the latter has proven his/her knowledge of the geoflow source code, capacity to manage it and guarantee its integrity.
- removal of commit access shall be handled in the same manner
- each committer must send an email to the geoflow author/maintainer list agreeing to the license guidelines (see below
Contributions and Licensing Agreement Template <#contributions-and-licensing-agreement-template>
_). This is only required once - each committer shall be listed as contributor in the geoflow package description
- development proposals shall be discussed first on the geoflow discussions and then described through a Github issue.
- pull requests can provide agreement to license guidelines as text in the pull request or via email to the geoflow author/maintainer_ (see
Contributions and Licensing Agreement Template <#contributions-and-licensing-agreement-template>
_). This is only required for a contributor's first pull request. Subsequent pull requests do not require this step - pull requests may include copyright in the source code header by the contributor if the contribution is significant (in general targeting a new core feature or a major enhancement of the geoflow core engine) and the contributor would like to claim copyright on their contribution. The copyright shall be handled under the current geoflow license (MIT).
- all contributors shall be listed at https://github.com/r-geoflow/geoflow/graphs/contributors
- unclaimed copyright, by default, is assigned to the main copyright holders as specified in https://github.com/r-geoflow/geoflow/blob/master/LICENSE
Hi all, I'd like to contribute <feature X|bugfix Y|docs|something else> to geoflow. I confirm that my contributions to geoflow will be compatible with the geoflow license guidelines at the time of contribution.
Code, tests, documentation, wiki and issue tracking are all managed on GitHub.
Make sure you have a GitHub account <https://github.com/signup/free>
_.
- the geoflow
wiki <https://github.com/r-geoflow/geoflow/wiki>
_ documents an overview of the package
- documentation is primarily managed in
doc/
, in Markdown format, eventually recycled through the wiki
geoflow's issue tracker <https://github.com/r-geoflow/geoflow/issues>
_ is the place to report bugs or request enhancements. To submit a bug be sure to specify the geoflow version you are using, the appropriate component, a description of how to reproduce the bug, as well as what version of R and platform.
Contributions are most easily managed via GitHub pull requests. Fork <https://github.com/r-geoflow/geoflow/fork>
_
geoflow into your own GitHub repository to be able to commit your work and submit pull requests.
- enhancements and bug fixes should be identified with a GitHub issue
- commits should be granular enough for other developers to understand the nature / implications of the change(s)
- non-trivial Git commits shall be associated with a GitHub issue. As documentation can always be improved, no need to open tickets for improving the docs
- Git commits shall include a description of changes
- Git commits shall include the GitHub issue number (i.e.
#1234
) in the Git commit log message - all enhancements or bug fixes must successfully pass all unit/integrations tests before they are committed
- when missing, especially for new features/enhancements, unit/integration tests should be part of the pull request
- geoflow (all lowercase) instead of Geoflow, GeoFlow, geoFlow, GeoFLOW
- always code with good R coding practices. The Hadley Wickam's Advanced R Style guide can be used as reference.
This section will guide you through steps of working on geoflow. This section assumes you have forked geoflow into your own GitHub repository.
- create a branch with a meaningful name, and referencing the issue number
- commit your changes (including unit/integration tests if needed) into this branch
- push the branch/commits to your Github fork
Your changes are now visible on your geoflow repository on GitHub. You are now ready to create a pull request. A member of the geoflow team will review the pull request and provide feedback / suggestions if required. If changes are required, make them against the same branch and push as per above (all changes to the branch in the pull request apply).
If ready for integration, the pull request will then be merged by the geoflow team. You can then delete your local branch (on GitHub), and then update your own repository to ensure your geoflow repository is up to date with geoflow master.