Skip to content

Latest commit

 

History

History
71 lines (50 loc) · 1.69 KB

File metadata and controls

71 lines (50 loc) · 1.69 KB

How to Contribute

Submitting a pull request

Forked strategy

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-ui

Commit message rules

Each 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>

Type

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.

Scope

The scope could be anything specifying place of the commit change. For example deps-dev, workflows, etc...

Subject

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 -> Fix
  • Added -> Add
  • Changed -> Change

Thanks!

We’re looking forward to your pull request. 🙏