Skip to content

Commit

Permalink
Translate Commit Message Format in contributing.md into Japanese (#146
Browse files Browse the repository at this point in the history
)

* docs: Translate `Commit Message Format` in contributing.md into Japanese

* docs: Fix some Japanese
  • Loading branch information
tomotargz authored and d2lam committed Feb 27, 2018
1 parent 5d801c2 commit 52097a4
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions docs/ja/about/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,22 +50,22 @@ You can file all issues with Screwdriver in the [screwdriver repo](https://githu

大掛かりな改善に取り組むときは、それがプロジェクトの目標に沿うものか確認するために事前にお声掛けください。

### Commit Message Format
### コミットメッセージのフォーマット

We use [semantic-release](https://www.npmjs.com/package/semantic-release), which requires commit messages to be in this specific format: `<type>(<scope>): <subject>`
私たちは[semantic-release](https://www.npmjs.com/package/semantic-release)を利用しているので、コミットメッセージは`<type>(<scope>): <subject>`のフォーマットでなければいけません。

- Types:
- feat (feature)
- fix (bug fix)
- docs (documentation)
- style (formatting, missing semi colons, …)
- refactor
- test (when adding missing tests)
- chore (maintain)
- Scope: anything that specifies the scope of the commit. Can be blank or `*`
- Subject: description of the commit. For **breaking changes** that require major version bump, add `BREAKING CHANGE` to the commit message.

**Examples commit messages:**
- feat (機能)
- fix (バグ修正)
- docs (ドキュメント)
- style (コードフォーマットや誤字脱字など)
- refactor (リファクタリング)
- test (テスト追加)
- chore (雑多な作業)
- Scope: コミットの範囲を特定するもの。空白や`*`でも構いません。
- Subject: コミットの説明。メジャーバージョンの更新が必要となる互換性のない変更を行うときは、コミットメッセージのどこかに`BREAKING CHANGE`と書いてください。

**コミットメッセージの例:**

- Bug fix: `fix: Remove extra space`
- Breaking change: `feat(scm): Support new scm plugin. BREAKING CHANGE: github no longer works`
Expand Down

0 comments on commit 52097a4

Please sign in to comment.