New contributor guide
This is a guide for new contributor who wants to contribute to Higress.
Subscribe to the mailing list
Section titled “Subscribe to the mailing list”TBD
Reporting issue
Section titled “Reporting issue”You can always reporting an issue to Higress via Github Issues.
If you are reporting bugs, please refer to the issue report template.
If you are reporting feature, please refer to the issue report template.
If you are reporting regular issues, like raise an question, you can open an regular issue.
Sending pull request
Section titled “Sending pull request”- Follow the checklist in the pull request template
- Before you sending out the pull request, please sync your forked repository with remote repository, this will make your pull request simple and clear. See guide below:
git remote add upstream git@github.com:alibaba/higress.gitgit fetch upstreamgit rebase upstream/maingit checkout -b your_awesome_patch... add some workgit push origin your_awesome_patchCode convention
Section titled “Code convention”Please check the CONTRIBUTING.md for code convention.