Skip to content

Latest commit

 

History

History
49 lines (41 loc) · 1.68 KB

CONTRIBUTING.md

File metadata and controls

49 lines (41 loc) · 1.68 KB

Contributing to IntelliForums

How to Contribute

  1. Fork the Repository
    • Click the "Fork" button at the top right of the repository page to create your own copy of the project
  2. Clone your Fork
    • Clone your forked repository to your local machine:
    git clone https://github.com/your-username/IntelliForums.git
    cd [IntelliForums]
  3. Create a Branch
    • Create a new branch for your feature or bug fix:
      git checkout -b my-feature-branch
  4. Add Files
    • Stage your changes for commit:
      git add .
    • (You can specify individual files instead of . if preferred.)
  5. Make Changes
    • Make your changes and commit them with a clear message:
      git commit -m "Add a feature"
  6. Push Your 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 on "New Pull Request." Select your branch and submit the pull request.

Guidelines

  • Code Style: Please follow the code style used in the project. Consistency helps maintain readability.
  • Documentation: If you add new features, make sure to update the documentation accordingly.
  • Issue Tracking: If you’re fixing a bug, please reference the issue number in your pull request (e.g., "Fixes #123").

Reporting Issues

If you find a bug or have a feature request, please open an issue in the repository. Make sure to provide as much detail as possible to help us understand the problem.

Questions?

If you have any questions, feel free to reach out by creating an issue.