Contributing
All core code of this project is open-sourced under our specific license . If developers are willing, we welcome all developers to contribute while adhering to the license .
How to Contribute
1. Fork
First, you need to fork this project, then 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 locally, write code, fix bugs, etc.
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
We will review your Pull Request. If modifications are needed, please make changes according to the feedback.
8. Merge
If your Pull Request is approved, we will merge it 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