Skip to content

Latest commit

 

History

History
40 lines (26 loc) · 1.51 KB

CONTRIBUTING.md

File metadata and controls

40 lines (26 loc) · 1.51 KB

Contributing to DevTools Academy

We're thrilled that you're interested in contributing to DevTools Academy! This document outlines the process for contributing and some guidelines to follow.

Getting Started

  1. Fork the repository on GitHub.
  2. Clone your fork locally: git clone https://github.com/yourusername/devtoolsacademy.git
  3. Create a new branch for your feature or bug fix: git checkout -b feature/your-feature-name

Making Changes

  1. Make your changes in your branch.
  2. Follow the coding style of the project, including indentation.
  3. Include comments in your code where necessary.
  4. Write or update tests for your changes if applicable.
  5. Ensure your changes don't break any existing functionality.

Committing Changes

  1. Commit your changes: git commit -m "Add a brief description of your changes"
  2. Push to your fork: git push origin feature/your-feature-name
  3. Submit a pull request to the main repository.

Pull Request Guidelines

  1. Ensure your PR title clearly describes the changes.
  2. Include a description of what your changes do and why they should be merged.
  3. Make sure all tests pass if applicable.
  4. Link any relevant issues in the pull request description.

Code of Conduct

Please note that this project is released with a Contributor Code of Conduct. By participating in this project, you agree to abide by its terms.

Questions?

If you have any questions, please feel free to open an issue or contact the maintainers.

Thank you for your contributions to DevTools Academy!