-
First of all, fork and clone this repository;
-
Clone your new repository to your system;
-
Create a new branch:
-
If adding a new feature:
- The branch should be named
feature/xxx
(#xxx is the short name your feature) - Add accompanying test case.
- Provide a convincing reason to add this feature.
- The branch should be named
-
If fixing a bug:
- The branch should be named
fix/xxx
(#xxx is the name a bug) - Provide a detailed description of the bug in the PR. Live demo preferred.
- If you are resolving a known issue, add
fixes #yyy
(#yyy is the issue id) in your PR title.
- The branch should be named
-
-
Commit changes and push the new branch;
-
Open and submit a PR.