Skip to Content

Contributing

The core code of this project is open-sourced under the project license . Contributions are welcome as long as they follow that license.

How to Contribute

1. Fork

First, fork this project and clone it locally.

git clone https://github.com/your-username/Revornix.git

2. Create a Branch

Create a branch locally for developing new features or fixing bugs.

git checkout -b new-branch-name

3. Development

Develop, debug, and test locally.

4. Commit

Commit your changes to the local repository.

git add . git commit -m "commit message"

5. Push

Push your changes to the remote repository.

git push origin new-branch-name

6. Create a Pull Request

Create a Pull Request on GitHub, requesting to merge your branch into the main branch.

7. Wait for Review

Maintainers will review your Pull Request. If changes are needed, please update it based on the feedback.

8. Merge

Once approved, the Pull Request will be merged into the main branch.

Notes

  • Please ensure your code complies with the project’s coding standards.
  • Please test locally before submitting a Pull Request to ensure the code runs properly.
Last updated on