0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Git : コミットメッセージ

Posted at

はじめに

Gitをつかってバージョン管理をしているとき、コミットメッセージのルールを統一した方が良いです。いろんな人がコミットするので、ある程度チーム内でコミットメッセージのルールを統一していると、参照性が上がると思います。

フォーマット

フォーマットは以下とします。

<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>

Type

タイプを以下とします。

feat: 新しいfeature
fix: バグ修正
docs: ドキュメントのみの変更
style: コードに影響のない変更
refactor: バグ修正や新featureの追加に影響を与えないコードの修正
test: 不足しているテストの追加や既存のテストの修正
chore: ビルドプロセスやドキュメント生成などの補助ツールやライブラリの変更

参考文献

angular.js/DEVELOPERS.md
Gitのコミットメッセージの書き方

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?