Skip to content

Latest commit

 

History

History
39 lines (23 loc) · 1.17 KB

CONTRIBUTING.md

File metadata and controls

39 lines (23 loc) · 1.17 KB

Contributing to Alctron

Welcome!

Thank you for assisting in our project!

Before starting, please check README.md before beginning contribution

How to contribute ?

Opening issues

  • You can report bugs or suggest new features or enhancements.
  • Ensure the issue was not already reported by searching on GitHub under Issues.
  • And then, open a new issue.

First Code Contribution

There are the steps to contribute as a developer :

  • Fork the repository.
  • Create a new branch :
    • For a feature : git checkout -b dev/feature-name
    • For a bug : git checkout -b fix/issue-name
    • For anything else : git checkout -b other/name
  • Commit your changes (git commit -am 'Add some feature').
  • Push to the branch (git push origin branch-name).
  • Open a new Pull Request on your fork repository.

Git Commit Messages

  • Use the present tense ("Add feature" not "Added feature").

Additional Notes

Thank you for contributing to AIctron :)