Git branch
The document presents the rules of branching adopted in the AWSIM development process.
Branches
| branch | explain | 
|---|---|
| main | Stable branch. Contains all the latest releases. | 
| feature/*** | Feature implementation branch created from main.After implementation, it is merged into main. | 
| gh-pages | Documentation hosted on GitHub pages. | 
Branch flow
- Create feature/***branch frommain.
- Implement in feature/***branch.
- Create a PR from the feature/***branch tomainbranch. Merge after review.