-
-
Notifications
You must be signed in to change notification settings - Fork 14
Contribution
Swagata Prateek edited this page Dec 6, 2022
·
1 revision
We are starting to follow basic gitflow in this repository. The two important branches are:
-
main
: This branch is stable, used for general releases. -
develop
: The forward looking development branch gathering features as it goes.
- If you have a github issue that you are working on, great! If you do not, cut a github issue with your desired feature or change.
- Create a new feature branch off
develop
branch. The suggested name iswip-<Github-Issue-Number>-<context>
. - Implement your feature in the feature branch. Ensure the continuous build is green in each commit or update the build steps accordingly.
- Send a PR to
develop
branch when your feature is ready. - When we cut a new release from
main
, your new feature fromdevelop
will be included there!