Skip to content

Latest commit

 

History

History
39 lines (32 loc) · 1.14 KB

CONTRIBUTING.md

File metadata and controls

39 lines (32 loc) · 1.14 KB

Contributing Guide

Hello and welcome! We’re excited you want to contribute to pgo. Here’s how you can help:

Reporting Issues

Found a bug or have a suggestion? Open an issue and provide as much detail as possible.

Code Contributions

  1. Fork the Repo: Fork the repository to your GitHub account:
    git clone git@github.com:<username>/pgo.git
  2. Clone Your Fork: Clone it to your local machine:
    git clone git@github.com:<username>/pgo.git
  3. Create a Branch:
    git checkout -b feat/feature-name  # Use feat, bug, docs, etc.
  4. Make Changes: Make your changes in the new branch.
  5. Commit Changes:
    git commit -m "Description of changes"
  6. Push to Your Repo:
    git push origin feat/feature-name
  7. Open a PR: Create a pull request from your repository to the dev branch of git@github.com:edgeflare/pgo.git. Provide a clear description.

Code Style

Follow our coding standards. If unsure, feel free to ask.

Documentation

Update documentation for any new features.

Thank you for your contributions!