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.
- Fork the Repository
Click the "Fork" button on the repository page to create your own copy. - Clone Your Fork
Clone the forked repository to your local machine:
git clone https://github.com/YOUR_USERNAME/community.git
ReplaceYOUR_USERNAMEwith your GitHub username. - Create a Branch
Create a new branch for your changes:
git checkout -b your-feature-branch
Use a descriptive name for your branch. - 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). - Commit Your Changes
Stage and commit your changes:
git add .
git commit -m "Add your commit message here" - Push to Your Fork
Push your branch to GitHub:
git push origin your-feature-branch - 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.