Skip to content

Latest commit

Β 

History

History
62 lines (44 loc) Β· 1.85 KB

File metadata and controls

62 lines (44 loc) Β· 1.85 KB

Contributing to DevPath

Thank you for considering contributing to DevPath! We welcome contributions from the community. Please follow the guidelines below to ensure a smooth contribution process.

How to Contribute

  1. Fork the Repository:

    • Click the "Fork" button at the top right of the repository page.
  2. Clone the Repository:

    • Clone your forked repository to your local machine using:
      git clone https://github.com/your-username/devpath.git
  3. Create a Branch:

    • Create a new branch for your feature or bugfix:
      git checkout -b my-feature-branch
  4. Make Changes:

    • Make your changes to the codebase.
  5. Commit Changes:

    • Commit your changes with a descriptive commit message:
      git add .
      git commit -m "Add feature X"
  6. Push Changes:

    • Push your changes to your forked repository:
      git push origin my-feature-branch
  7. Create a Pull Request:

    • Go to the original repository and click the "New Pull Request" button.
    • Select your branch and create the pull request.
    • Provide a clear description of your changes and any related issues.

Code of Conduct

Please note that this project is governed by a Code of Conduct. By participating, you are expected to adhere to this code.

Reporting Issues

If you encounter any issues, please check the existing issues first to see if the problem has already been reported. If not, feel free to open a new issue with detailed information.

Coding Standards

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

Testing

  • Please write tests for your changes.
  • Ensure all tests pass before submitting your pull request.

Thank you for your contributions!