1
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?

More than 3 years have passed since last update.

初心者でもできる!かっこいいコミットメッセージの作り方

Last updated at Posted at 2020-08-10

#はじめに
どうやらGitHubのコミットメッセージにも命名規則のようなものがあるらしいです
全く知らなかったので見返せるようにメモを残します

こちらの記事を参考に日本語訳しています
https://github.com/angular/angular.js/blob/master/DEVELOPERS.md#type

#コミットメッセージ

下記のようにコミットメッセージを入力します

タイプ(ファイル名):作業内容
例)feat(hello.txt):ファイル追加

タイプ 意味
add 新機能・新規ファイル追加
chore ツール等で自動生成されたもののコミット
fix バグ修正
update バグではない機能修正
change 仕様変更による機能修正
style 空白、セミコロン、行、コーディングフォーマットなどの修正
refactor リファクタリング
delete ファイルの削除、コードの削除
test 新しいテストの追加、既存のテストの修正
docs ドキュメントのみ修正

とりあえずfix,add,update,delete,styleくらいが使えればいいかな?

#ブランチ名

ブランチ名もできれば上記のような命名規則に従うといいみたいです

1
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
1
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?