Learn about the contribution policy and how to contribute to AurisLink.
Only the `dev` branch accepts pull requests. Any contributions submitted to other branches (such as `v1` or `main`) will be automatically rejected.
This ensures that all contributions are properly reviewed and tested before being merged into stable releases.
✅ ACCEPTS PULL REQUESTS
The development branch where all new features, bug fixes, and improvements are merged. This is the only branch that accepts contributions.
git push origin feature/your-feature -u❌ DOES NOT ACCEPT PULL REQUESTS
The stable release branch. Any PRs submitted to this branch will be rejected. Use this branch only for production deployments.
❌ DOES NOT ACCEPT PULL REQUESTS
Mirror of the latest stable release. Any PRs submitted to this branch will be rejected.
❌ DOES NOT ACCEPT PULL REQUESTS
Any other branches are experimental or temporary. PRs to these branches will be rejected.
Click the "Fork" button on GitHub to create your own copy of the repository.
Fork on GitHub →git clone https://github.com/YOUR_USERNAME/aurislink.git cd aurislink git checkout dev git checkout -b feature/your-feature-name
Always branch from dev, not from other branches.
git add . git commit -m "feat: describe your changes" git push origin feature/your-feature-name
Then open a pull request on GitHub targeting the dev branch.
Your PR will be reviewed by the maintainers. They may request changes or ask questions. Once approved, your changes will be merged into the dev branch.
v1 branchmain branchdevIf you have questions about contributing, feel free to:
Thank you for your interest in contributing to AurisLink! 🎉
← Back to Documentation