naopoyo.com
  • Docs
  • Tags
  • Bookmarks
  • Tools
  • About
  • Docs
  • Tags
  • Bookmarks
  • Tools
  • About

目次

© naopoyo

目次

最近更新された記事

🚈

Claude Code メモ

3日前·2026年02月18日
  • Claude Code
🎼

Rails + React 構成についてのメモ

4日前·2026年02月16日
  • Rails
  • React
🎣

GitHub App Webhook で push を処理するとき、知っておきたい制約と対処法

4日前·2026年02月16日
  • GitHub
  • Ruby
💬

Gitのコミットメッセージをどのように書くのが良いか

公開日2年以上前2023-10-19
更新日1年以上前2024-05-31
履歴GitHubで見る
MarkdownRaw Content
  • Git

Semantic Commit Messages

Format: <type>(<scope>): <subject>

type説明
featユーザー向けの新機能追加・修正。ビルドスクリプトの新機能は除く。
fixユーザーのバグ修正。ビルドスクリプトの修正は除く。
docsドキュメントの変更。
styleセミコロンの欠落などの書式設定。プロダクションコードの変更は無し。
refactorプロダクションコードのリファクタリング。変数の名前変更など。
test不足しているテストの追加、テストのリファクタリング。プロダクションコードの変更は無し。
choreビルドスクリプトの更新など。プロダクションコードの変更は無し。

参考

  • Semantic Commit Messages
  • Gitのコミットメッセージの書き方(2023年ver.)

依存しているパッケージのアップデートする場合のコミットメッセージ

タイプ、スコープを chore(deps): にする場合が多そう。

What would be a good commit message for updating package versions using Conventional Commits?
Following Conventional Commits what would be the best &lt;type&gt; for commits regarding package version changes (upgrades/updates)? E.g.: feat: Bump React version to &quot;16.13.1&quot; E.g.: feat:
stackoverflow.com favicon
stackoverflow.com
What would be a good commit message for updating package versions using Conventional Commits?
This gist consist of the rules and best practice of good conventional git commit message
This gist consist of the rules and best practice of good conventional git commit message - git-commit-styleguide.md
github.com favicon
github.com
This gist consist of the rules and best practice of good conventional git commit message