Skip to main content

Before You Start

Ensure you have:
  1. Set up your development environment
  2. Read our code style guide
  3. Reviewed existing issues and PRs

Creating a Pull Request

1

Fork the Repository

Fork the GAIA repository on GitHub to your account.
2

Clone Your Fork

Clone your fork locally:
3

Add Upstream Remote

Add the original repository as upstream:
4

Create a Feature Branch

Create a new branch for your changes:
Branch naming conventions:
  • feature/ - New features
  • fix/ - Bug fixes
  • docs/ - Documentation updates
  • refactor/ - Code refactoring
5

Make Your Changes

Make your changes following our code style guide.Test your changes:
6

Commit Your Changes

Commit with a descriptive message following conventional commits:
7

Sync with Upstream

Keep your branch up to date:
8

Push to Your Fork

Push your changes:
9

Create Pull Request

Go to github.com/theexperiencecompany/gaia and create a pull request.

Pull Request Guidelines

Title Format

Use conventional commit format:

Description Template

Include:
  1. What: Brief description of the change
  2. Why: Reason for the change
  3. How: Technical approach taken
  4. Testing: How you tested the changes
  5. Screenshots: If applicable (for UI changes)
  6. Related Issues: Link related issues

Checklist

Before submitting, ensure:
  • Code follows style guidelines
  • Self-review completed
  • Comments added for complex logic
  • Documentation updated if needed
  • No new warnings generated
  • Tests added/updated and passing
  • Dependent changes merged
  • Conventional commit format used

Review Process

What to Expect

  1. Automated Checks: CI/CD runs tests and linters
  2. Code Review: Maintainers review your code
  3. Feedback: Address any requested changes
  4. Approval: Once approved, your PR will be merged

Responding to Feedback

  • Be responsive to review comments
  • Ask questions if feedback is unclear
  • Make requested changes promptly
  • Re-request review after updates

Making Changes

After feedback:
The PR will automatically update.

After Merge

Once merged:
  1. Delete your feature branch:
  2. Update your local master:
  3. You’ll be added to our contributors list! 🎉

Common Issues

Sync with upstream and resolve conflicts:
Review the CI logs and fix issues:
Rebase on latest master:

Getting Help

Need assistance? Thank you for contributing to GAIA! 🚀