You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BUILD = Perubahan yang ngaruh ke build system atau dependency.
git commit -m "build: "
contoh
git commit -m "build: Perbarui Gradle dan alat pembuatan Android."
CHORE = Pekerjaan rutin, bersih-bersih, tidak ngaruh ke fitur atau behavior.
git commit -m "chore: "
contoh
git commit -m "chore: menghapus aset yang tidak digunakan dan membersihkan struktur proyek"
CI = Perubahan pipeline CI/CD.
git commit -m "ci: "
contoh
git commit -m "ci: Tambahkan alur kerja GitHub Actions untuk pengujian Flutter."
DOCS = Dokumentasi doang. Tidak nyentuh logic.
git commit -m "docs: "
contoh
git commit -m "docs: Perbarui README dengan petunjuk pengaturan Firebase."
STYLE = Formatting, spasi, lint, tanpa ubah logic.
git commit -m "style: "
contoh
git commit -m "style: Memformat file dan memperbaiki warning"
REFACTOR = Restruktur kode, behavior tetap sama.
git commit -m "refactor: "
contoh
git commit -m "refactor: Merestrukturisasi layanan otentikasi untuk pemisahan tanggung jawab yang lebih baik."
PERF = Optimasi performa, memory, atau waktu eksekusi.
git commit -m "perf: "
contoh
git commit -m "perf: mengurangi pembaruan widget di layar beranda"
TEST = Nambah atau perbaiki test.
git commit -m "test: "
contoh
git commit -m "test: tambahkan unit test untuk layanan notifikasi"
About
A standardized and strict guide to Git commit prefixes, providing clear definitions and practical examples to enforce consistency, clarity, and discipline in professional commit messages, following conventional commit practices.