Skip to content

Contributing

Ricardo Amores Hernández edited this page Feb 17, 2017 · 6 revisions

If you want to contribute to the development of this project, just fork it, define the tests with the new behaviours, make them pass, and finally create a pull request to the development branch.

The organization of this repository is as follow:

Master and development branches

  • master branch lastest stable version, safe for production usage.
  • development branch cutting edge version with latest additions. Should be usable, but could contain bugs, so be careful if you use it. Please make all PR against this branch.

New features / bug fixes

When working on a new feature, a branch named feature/[github_issue_id] will be created for that task. (e.g. feature/3561 will refer to the feature described in the issue with id 3561) This feature branches are just for internal development use, and will probably not be safe for an end user.

Bug fixes use the same treatment but using a fix/[github_issue_id] branch name.

Once an issue is fixed/finished and tested it will be merged into the development branch via Pull Request.

## Tests Please you have test coverage for fixes or new features. Test are to be located at the INIFileParser.Tests project so they remain in a different dll.

## Contributors Thanks to all people that contributed to this project: https://github.com/rickyah/ini-parser/graphs/contributors

Clone this wiki locally