Skip to content

Latest commit

 

History

History
56 lines (39 loc) · 1.63 KB

contributing.md

File metadata and controls

56 lines (39 loc) · 1.63 KB

Contributing

Contributions are welcome! If you have suggestions for improvements, please follow these steps:

  1. Fork the Repository:

    • Click the "Fork" button at the top-right corner of this page to create a copy of the repository in your GitHub account.
  2. Clone Your Fork:

    • Clone your forked repository to your local machine.
      git clone https://github.com/rahulorihiki/Sales_Forecasting_using_Time_Series.git
      cd book-discovery-hub
  3. Create a Branch:

    • Create a new branch for your changes.
      git checkout -b feature/your-feature-name
  4. Make Your Changes:

    • Make the necessary changes to the code.
  5. Commit Your Changes:

    • Commit your changes with a clear and descriptive commit message.
      git add .
      git commit -m "Add feature: your feature description"
  6. Push to Your Fork:

    • Push your changes to your forked repository.
      git push origin feature/your-feature-name
  7. Submit a Pull Request:

    • Go to the original repository on GitHub and navigate to the "Pull Requests" tab.
    • Click "New Pull Request" and select your branch from the dropdown menu.
    • Provide a descriptive title and detailed description of your changes, and submit the pull request.

Guidelines

  • Ensure your code adheres to the project's coding standards.
  • Write clear, concise commit messages.
  • Include comments and documentation where necessary.
  • Update the README file if your changes affect how the project is used.
  • Be respectful and considerate in all interactions.

Thank you for your contributions!