Skip to content

Latest commit

 

History

History
57 lines (35 loc) · 1.74 KB

CONTRIBUTING.md

File metadata and controls

57 lines (35 loc) · 1.74 KB

Contributing to AIXCL

Thank you for considering contributing to AIXCL! We welcome contributions from the community and are excited to collaborate with you.

How to Contribute

  1. Fork the Repository: Start by forking the repository to your GitHub account.

  2. Clone Your Fork: Clone your forked repository to your local machine.

    git clone https://github.com/xencon/aixcl.git
    cd aixcl
  3. Create a Branch: Create a new branch for your feature or bug fix.

    git checkout -b feature/your-feature-name
  4. Make Changes: Implement your changes, ensuring you follow the project's coding standards.

  5. Commit Your Changes: Write clear and concise commit messages.

    git add .
    git commit -m "Add feature: your feature description"
  6. Push to Your Fork: Push your changes to your forked repository.

    git push origin feature/your-feature-name
  7. Submit a Pull Request: Go to the original repository and submit a pull request. Provide a detailed description of your changes and any relevant information.

Code of Conduct

Please adhere to the project's code of conduct in all your interactions with the project.

Coding Standards

  • Follow the existing code style and conventions.
  • Write clear, concise, and descriptive commit messages.
  • Ensure your code is well-documented.

Reporting Issues

If you encounter any issues, please report them using the issue tracker. Provide as much detail as possible to help us understand and resolve the issue.

Feedback and Suggestions

We welcome feedback and suggestions! Feel free to open an issue or start a discussion to share your thoughts.

Thank you for your contributions!