-
Fork and clone the repository
git clone [email protected]:YOUR-USERNAME/LEAPDAO_REPONAME.git
-
Create a branch in the fork
The branch should be based on the
master
branch in the master repository. Prepend the correct type to your branch.git checkout -b TYPE/my-feature-or-bugfix master
-
Commit changes on your branch
Commit changes to your branch, following the commit message format.
git commit -m "properly formatted SET statements."
-
Push the changes to your fork
git push -u myfork TYPE/my-feature-or-bugfix
-
Create a Pull Request
In the Github UI of your fork, create a Pull Request to the
master
branch of the master repository.If the branch has merge conflicts or has been outdated, please do a rebase against the
master
branch.
Commit messages should follow the commit message convention.
Should be one of the following:
- feat: A new feature
- fix: A bug fix
- chore: Changes to build and dev processes/tools
- docs: Changes to documentation
- style: Changes to code style formatting (white space, commas etc)
The <scope>
of the commit is optional and can be omitted. When used though, it should describe the place or part of the project, e.g. docs(examples)
, feat(data)
etc.