# exact_git-commit - Author: Takahiro Kinouchi - Repository: kittchy/dotfiles - Version: 20260131184507 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/kittchy/dotfiles - Web: https://mule.run/skillshub/@@kittchy/dotfiles~exact_git-commit:20260131184507 --- # Gitで変更をcommit - git statusを使って変更箇所を理解し、コミットを作成する - commit の prefixは以下の通り - "[FIX]" : バグや不具合の修正 - "[FEAT]" : 新機能の追加 - "[DOC]" : ドキュメントの更新や改善 - "[STYLE]" : コードフォーマットの修正、UIのみの変更 - "[REFACT]" : パフォーマンスの改善なしのコードの改善 - "[TEST]" : テストの追加や改善 - "[PREF]" : パフォーマンスの改善 - "[CHORE]" : ビルドプロセスの変更や改善 - "[WIP]" : 作業中 - "[DEL]" : コードの削除 - commit時は `git commit -m "[FIX] "` のように `-m` オプションを使うこと