Peroxide follows Gitflow workflow. Don't need to much precise, but it's good to obey some simple rules.
- Do not work on
master
branch directly. - Use
features/<features_to_improve>
branch mainly. For example, if you want to improveDataFrame
then createfeatures/dataframe
on latestdev
branch & create pull request todev
branch. - Test before push.
cargo test --features <required_features>
is wonderful.
Thanks for all contributions!