Slide 21
Slide 21 text
1
Tips: Commit message
に迷ったら
Semantic Commit Messages: Google/Angular
の規約にアレンジを加えたもの。実装内容によって7 types
を使い分ける
type description example
chore
微修正 chore: fix typo
docs
ドキュメント関連の変更 docs: add readme how to run
feat
コードの本体機能に関する追加・変更 feat: modify dependencies for training
fix
バグ修正 fix: ensure loss function returns non-zero
refactor
パフォーマンス改善等のリファクタリング refactor: improve model loading
style
フォーマット等の見た目上の変更 style: apply ruff linting
Commit Message
の規約に従う
feat: add hat wobble
^--^ ^------------^
| +-> Summary in present tense.
+-------> Type: chore, docs, feat, fix, refactor, style, or test.