I work with git
on all projects in the company where I work. Unfortunately, some programmers end up putting any message, in a hurry, into commit
. This makes things harder, because instead of you seeing the description of what was done in git log
, you will have to "kick" by the date of a specific commit
.
Some put things like git commit -am ":)"
or git commit -am "tudo"
.
Example:
commit 18d76fbaa661945ef59f675092f5050d3d7016a3
Merge: 7f0aea2 8ca43f6
Author: XXX XXXX <xxx@email>
Date: Wed Feb 17 10:26:40 2016 -0200
all
commit 7f0aea214c26e84b18a8768a7d282b760b7a230a
Author: XXX XXXX <xxx@email>
Date: Wed Feb 17 10:22:38 2016 -0200
all
I'd like to know if there's any way to reverse such cliches.
Is there any way to edit a specific commit message?