Download latest version from itch.io game page.
We welcome contributions from everyone. Here's how to contribute:
-
Clone the Repository: Get the latest version of the project:
git clone -b develop https://github.com/TheCreators/RadiantBloom-BeyondHorizon cd RadiantBloom-BeyondHorizon
-
Create a New Branch: Start by creating a new branch from
develop
:git checkout develop git pull origin develop # Ensure you're up-to-date git checkout -b my-new-branch
Replace
my-new-branch
with a descriptive name for your branch. -
Make Your Changes: Implement your feature or fix, adhering to the project's code style and conventions.
-
Test Your Changes: Before committing, test your changes locally to ensure everything works as expected.
-
Commit and Push: Commit your changes with clear, descriptive messages. Then, push them to your fork:
git push -u origin my-new-branch
-
Submit a Pull Request (PR): Go to GitHub and create a PR against the
develop
branch of the main repository. Clearly describe your changes and their impact. -
Participate in Code Review: Engage with any feedback during the review process. This collaboration ensures high-quality contributions.
-
Keep Your Fork Updated: Regularly sync your fork's develop branch with the main repository to avoid merge conflicts.
-
Communicate Clearly: Use clear, respectful language in your PRs and comments to facilitate collaboration.
By following these guidelines, you'll help ensure that your contributions are integrated smoothly and efficiently. Happy coding!