This repository incorporates GitLab Flow. For the releations among branches, please see here.
In short, "upstream first" policy:
master
branch always contains the latest edit.- Release branches stay untouched unless there are serious bug fixes. In this case, changes are cherry-picked from
master
branch.
To make a pull request to fix a bug or to add features:
- Fork or clone the repo.
- Add a new feature branch in your repo.
- Switch to the new branch, and do the hacking.
- Initiate a pull request from the new branch.
- Feature merged! Yay!