Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 1.58 KB

CONTRIBUTING.md

File metadata and controls

38 lines (26 loc) · 1.58 KB

Contributing to Data Hub Template

Thank you for considering contributing to the Data Hub Template project! We welcome contributions from the community and are grateful for your support.

How to Contribute

Reporting Issues

If you find a bug or have a feature request, please open an issue on the GitHub Issues page. Provide as much detail as possible to help us understand and resolve the issue quickly.

Submitting Pull Requests

  1. Fork the Repository: Click the "Fork" button at the top right of the repository page to create a copy of the repository in your GitHub account.

  2. Clone the Repository: Clone your forked repository to your local machine using the following command:

    git clone https://github.com/your-username/data-hub-template.git
  3. Create a Branch: Create a new branch for your changes. Use a descriptive name for your branch:

    git checkout -b feature/your-feature-name
  4. Make Changes: Make your changes to the codebase. Ensure that your code follows the project's coding standards and conventions.

  5. Commit Changes: Commit your changes with a clear and concise commit message:

    git add .
    git commit -m "Add feature: your feature name"
  6. Push Changes: Push your changes to your forked repository:

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