Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 1.27 KB

CONTRIBUTING.md

File metadata and controls

42 lines (35 loc) · 1.27 KB

How to Contribute

  1. Fork the Repository:

    • Click the "Fork" button at the top right corner of this repository's GitHub page.
  2. Clone Your Fork:

    • Clone your forked repository to your local machine:
      git clone https://github.com/your-username/AIMap.git
    • Navigate into your cloned repository:
      cd AIMap
  3. Create a Branch:

    • Create a new branch for your feature or bug fix:
      git checkout -b feature-or-bugfix-name
  4. Make Your Changes:

    • Implement your feature or bug fix.
    • Ensure your code follows the project's coding standards.
    • Write tests for your changes if applicable.
  5. Commit Your Changes:

    • Commit your changes with a clear and descriptive commit message:
      git commit -m "Description of the changes made"
  6. Push to Your Fork:

    • Push your changes to your forked repository:
      git push origin feature-or-bugfix-name
  7. Create a Pull Request:

    • Go to the original repository on GitHub and click the "Compare & pull request" button.
    • Provide a clear description of your changes in the pull request.
    • Ensure your pull request follows the project's pull request template if available.