Git Commit Best Practice
Table of Contents
Writing Good Commit Messages
When To Commit
Writing Good Commit Messages
Commit message contains
subject line: tell briefly what changes have been done
body message: optional part to give more explanation about the commit
1. Imperative Subject
Write a subject line in an imperative form (bentuk aktif dalam bahasa Indonesia)
Commit messages have to complete this sentence:
"If applied, this commit will _"
or
"Jika ditambahkan, commit ini akan _"
Examples
If applied, this commit will
Add login page layout
If applied, this commit will
Remove deprecated methods
If applied, this commit will
Fix a bug where app will crash when user login for the second time
If applied, this commit will
Fix a bug on the login page
If applied, this commit will
Release version 1.0.0
Jika ditambahkan, commit ini akan
Memperbaiki bug pada halaman dashboard
Jika ditambahkan, commit ini akan
Menambahkan grafik pada halaman dashboard
2. Limit Subject chars to 72
3. Separate subject and body with exactly 1 line
4. Use body message to explain "what" or "why" instead of "how"
Your code should tell the story better
Do
Don't
5. Capitalize the first char in subject
6. Don't use a period (.) at the end of the subject
7. Don't use emoji in your commit message
git gak dipake buat chattingan mas parkun
~ some dev ops engineer to some front end developer, circa 2019
When to Commit
Partially refers to this link
Atomic and granular commits make it easier for developers to understand the changes and roll them back if something went wrong. With tools like the staging area and the ability to stage only parts of a file, Git makes it easy to create very granular commits.
1. Commit often for every task
The task is a part of a feature which is standalone and can be tested
2. Don't commit half-done work
3. Separate commit of bug fixes and feature addition or updates
4. Test before you commit
Last updated
Was this helpful?