Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 2.46 KB

CONTRIBUTING.md

File metadata and controls

51 lines (34 loc) · 2.46 KB

Contributor License

If this is your first time contributing to an Eclipse Foundation project, you'll need to sign the Eclipse Foundation Contributor License Agreement.

Making changes

Fork the repository in GitHub, make changes in your fork and submit a pull request.

Coding Style

The gsc-ec-converter follows a coding style that is similar to Google's Style Guide for Java, but with curly braces on their own lines.

Commit messages

  • Use the imperative mood as in "Fix bug" or "Add feature" rather than "Fixed bug" or "Added feature"
  • [Mention the GitHub issue][github-issue] when relevant
  • It's a good idea to follow the advice in Pro Git
  • Sign-off your commits using git commit --signoff or git commit -s for short

Pull requests

Excessive branching and merging can make git history confusing. With that in mind

Submit your pull request when ready. Two checks will be kicked off automatically.

  • IP Validation: Checks that all committers signed the Eclipse CLA and signed their commits.
  • The standard GitHub check that the pull request has no conflicts with the base branch.

Make sure all the checks pass. One of the committers will take a look and provide feedback or merge your contribution.

That's it! Thanks for contributing to gsc-ec-converter!