Skip to content

Latest commit

 

History

History
63 lines (50 loc) · 1.7 KB

CONTRIBUTING.md

File metadata and controls

63 lines (50 loc) · 1.7 KB

Contribution Guide

Thank you for considering contributing to Inception! We welcome all contributions, whether they are bug fixes, new features, or documentation improvements.

How to Contribute

1. Fork the Repository

2. Clone Your Fork

Clone your forked repository to your local machine:

git clone https://github.com/your-username/inception.git
cd inception

3. Create a Branch

Create a new branch for your feature or bug fix:

git checkout -b feature-or-bugfix-name

4. Make Your Changes

Make your changes in the codebase. Ensure your code follows the project's coding standards and passes all tests.

5. Commit Your Changes

Commit your changes with a meaningful commit message:

git add .
git commit -m "Description of the feature or bug fix"

6. Push to Your Fork

Push your changes to your forked repository:

git push origin feature-or-bugfix-name

7. Open a Pull Request

  • Navigate to the original repository.
  • Click on the "New Pull Request" button.
  • Select your branch from the "compare" drop-down menu.
  • Provide a clear description of your changes and submit the pull request.

Code of Conduct

Please adhere to our Code of Conduct in all your interactions with the project.

Reporting Issues

If you find any issues, please report them here.

Additional Resources

Thank you for your contributions! Your help is greatly appreciated.