Skip to content

Latest commit

 

History

History
71 lines (42 loc) · 1.77 KB

CONTRIBUTING.md

File metadata and controls

71 lines (42 loc) · 1.77 KB

Contributing to AdCoreLib

Thank you for your interest in contributing to AdCoreLib! We welcome all contributions, whether they are bug reports, feature requests, documentation improvements, or code contributions.

How to Contribute

1. Fork the Repository

First, fork the repository to your own GitHub account.

2. Clone Your Fork

Clone the repository to your local machine:

git clone https://github.com/geniusrabbit/adcorelib.git
cd adcorelib

3. Create a New Branch

Create a new branch for your changes:

git checkout -b your-feature-branch

4. Make Your Changes

Make sure to test any changes you make to the code.

5. Commit Your Changes

Once you’re happy with your changes, commit them:

git add .
git commit -m "Description of your changes"

6. Push to Your Fork

Push the changes to your fork:

git push origin your-feature-branch

7. Submit a Pull Request

Go to the original repository and submit a pull request from your branch. In the pull request, provide a clear description of the changes and why they are necessary.

Guidelines

  • Code Style: Ensure your code follows the project’s coding style and conventions.
  • Testing: Please make sure all tests pass and add new tests if applicable.
  • Documentation: If you’re adding new functionality, update the documentation accordingly.

Reporting Bugs

If you encounter any bugs, please open an issue and provide as much detail as possible, including steps to reproduce the issue.

Feature Requests

If you have ideas for new features, feel free to open an issue to discuss your proposal.

Code of Conduct

Please adhere to the Code of Conduct when contributing or interacting with others in the project.

Thank you for contributing to AdCoreLib!