-
Fork the Repository:
- Click the "Fork" button at the top right corner of this repository's GitHub page.
-
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
- Clone your forked repository to your local machine:
-
Create a Branch:
- Create a new branch for your feature or bug fix:
git checkout -b feature-or-bugfix-name
- Create a new branch for your feature or bug fix:
-
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.
-
Commit Your Changes:
- Commit your changes with a clear and descriptive commit message:
git commit -m "Description of the changes made"
- Commit your changes with a clear and descriptive commit message:
-
Push to Your Fork:
- Push your changes to your forked repository:
git push origin feature-or-bugfix-name
- Push your changes to your forked repository:
-
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.