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?

Conventional Commits 早見表

0
Posted at

よく使うPrefix一覧

Prefix 用途
feat 新機能追加 feat: 請求書一覧画面を追加
fix バグ修正 fix: CSV出力時の不具合を修正
refactor リファクタリング refactor: BQ接続処理を共通化
test テスト追加・修正 test: InvoiceServiceの単体テスト追加
docs ドキュメント修正 docs: READMEを更新
chore 雑務・保守作業 chore: ライブラリを更新
ci CI/CD設定変更 ci: GitHub Actionsを修正
build ビルド関連変更 build: Dockerfileを更新
perf パフォーマンス改善 perf: SQLを最適化
style フォーマット修正のみ style: prettier適用
revert コミット取り消し revert: feat: CSV出力機能を追加

迷ったらこれ

新しい機能を追加した

feat:

feat: 請求書詳細画面を追加

不具合を修正した

fix:

fix: 請求書検索でエラーになる問題を修正

コードを整理しただけ

refactor:

refactor: 請求書取得ロジックを共通化

テストを書いた

test:

test: InvoiceServiceの単体テストを追加

ドキュメントを修正した

docs:

docs: READMEを更新

ライブラリ更新や設定変更

chore:

chore: package.jsonを更新

チーム推奨

基本的には以下だけ覚えておけば十分。

feat      新機能
fix       バグ修正
refactor  リファクタリング
test      テスト
docs      ドキュメント
chore     雑務・設定変更
ci        CI/CD

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?