This repository is managed using a fork-based pull request strategy.
# Fork this repository to yours.
$ git clone [YOUR_REPOSITORY_URL]
$ cd morpher-ui
# Install npm packages.
$ npm install
# (Working...)
$ git commit [...]
$ git push origin [YOUR_REPOSITORY]
# Enroll pull-request!
# in https://github.com/morpher-vm/morpher-uiEach commit message consists of a header, a body and a footer. The header has a special format that includes a type, a scope and a subject:
<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
Must be one of the following:
- feat: When creating a new feature.
- fix: When fix a bug.
- docs: When add or change documentation.
- style: When improve code style.
- refactor: When improve code without add or change feature.
- perf: When improve performance.
- test: When add or change test code.
- chore: When change build process or tool.
- revert: When revert a commit.
- misc: When something else entirely.
The scope could be anything specifying place of the commit change.
For example deps-dev, workflows, etc...
The first part of the commit message begins with an infinitive, and the first letter is capitalized.
It starts with commands such as Fix, Add and Change instead of past tense such as Fixed, Added
and Changed. In addition, It does not exceed 70 characters and does not end with a period (.).
Fixed->FixAdded->AddChanged->Change
We’re looking forward to your pull request. 🙏