- Clone this repository to your local machine.
- Checkout new branch to start development
git checkout -b <branch-name>
.
Branch naming convention:
- Feature -
feat_custom_token
- Release/Build -
release_2.1
orv2.1
- Fix/Bug -
fix_unknown_token
orfixes
(if more than one)
Note: No strict convention while naming branch, but try to keep it meaningful for your team members to understand.
- Add files to be committed and then commit changes to your local machine
git commit -m <commit-message>
Commit message convention:
- Feature -
feat: integrate token balances
- Release/Build -
chore: release v2.1
orchore: bump version to 2.1
- Fix/Bug -
fix: token balances
orfix: token list, transfers
(if more than one)
Note: Keep commit message meaningful for your team members to understand while reviewing merge/pull request.
-
Push changes to remote repository
git push origin <branch-name>
-
Create a merge/pull request against
master
branch.
Note: Don't push changes to master
branch directly. Write proper description of the changes while creating merge/pull request