Thank you for your interest in contributing to GigaToken! This document provides guidelines for contributing to the project.
Before you start, please read and adhere to our Code of Conduct.
-
Fork the Repository: First, fork the main repository.
-
Clone Your Fork: Clone your fork to your local machine:
git clone git@github.com:YOUR_USERNAME/ivttoken-project.git
- Create a Feature Branch: Create a new branch for your feature or fix:
git checkout -b your-feature-name
-
Make Your Changes: Make the necessary changes or additions to the code or documentation.
-
Test Your Changes: Ensure you test your changes locally and that all tests pass.
-
Commit Your Changes: Add and commit your changes:
git add .
git commit -m "Brief description of changes"
- Push to Your Fork: Push your changes to your GitHub fork:
git push origin your-feature-name
- Open a Pull Request: Go to the main repository and click on "New Pull Request". Select your branch from the dropdown and submit the pull request with a detailed description of your changes.
- Follow the existing code style in the project.
- Comment your code when necessary.
- Keep your changes focused on a single issue. Pull requests with multiple features or fixes are harder to review and are often rejected.
If you have any questions or feedback, feel free to open an issue or ticket.