Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.73 KB

File metadata and controls

49 lines (32 loc) · 1.73 KB

Contributing to GigaToken Project

Thank you for your interest in contributing to GigaToken! This document provides guidelines for contributing to the project.

Code of Conduct

Before you start, please read and adhere to our Code of Conduct.

How to Contribute

  1. Fork the Repository: First, fork the main repository.

  2. Clone Your Fork: Clone your fork to your local machine:

git clone git@github.com:YOUR_USERNAME/ivttoken-project.git
  1. Create a Feature Branch: Create a new branch for your feature or fix:
git checkout -b your-feature-name
  1. Make Your Changes: Make the necessary changes or additions to the code or documentation.

  2. Test Your Changes: Ensure you test your changes locally and that all tests pass.

  3. Commit Your Changes: Add and commit your changes:

git add .
git commit -m "Brief description of changes"
  1. Push to Your Fork: Push your changes to your GitHub fork:
git push origin your-feature-name
  1. 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.

Code Style Guidelines

  • 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.

Feedback

If you have any questions or feedback, feel free to open an issue or ticket.