|
|
|
|
|
by bluesign
2169 days ago
|
|
It all depends on how well you use git I guess. Imagine you developed a feature on a branch, then merged it into main. Later you have to change something at that feature, from the commit message you can find the commit, then you can see which parts of code is effected by that. Then you are working on a subset of code, and can see of your change is effecting something else, or where else you need to make changes. Or maybe someone fixed a bug there, then from commit message you can go to related bug, see their intentions more clearly. |
|
A string of commit messages on a branch saying, “add x”, “typo”, say a lot less than a single commit along the lines of “TICKET-XXX new feature”.