How to Submit Pull Requests

Contribute to the NautilusOS community by submitting pull requests to improve the repository.

Step-by-Step Guide

Follow these steps to submit a pull request (PR) to the NautilusOS Community repository.

  1. Fork the Repository
    Click the "Fork" button on the repository page to create your own copy.
  2. Clone Your Fork
    Clone the forked repository to your local machine:
    git clone https://github.com/YOUR_USERNAME/community.git
    Replace YOUR_USERNAME with your GitHub username.
  3. Create a Branch
    Create a new branch for your changes:
    git checkout -b your-feature-branch
    Use a descriptive name for your branch.
  4. Make Your Changes
    Edit the files as needed. Ensure your changes align with the repository's guidelines (e.g., adding apps, games, or themes via JSON catalogs).
  5. Commit Your Changes
    Stage and commit your changes:
    git add .
    git commit -m "Add your commit message here"
  6. Push to Your Fork
    Push your branch to GitHub:
    git push origin your-feature-branch
  7. Create a Pull Request
    Go to the original repository and click "New Pull Request". Select your branch and provide a clear description of your changes.

Additional Tips

  • Test your changes locally before submitting.
  • Follow the repository's contribution guidelines if available.
  • Be respectful and provide detailed descriptions in your PR.
  • If you're new to GitHub, check out their official documentation.