Is there a way/common practice to label and group commits in Git? I understand that the de facto practice, for example, is to reference issue numbers preceded by an hash and people preceded by an at-sign (such as Fixed #23
or @userName
), and applications like BitBucket or Github already parse these correctly.
I would like a way to group a certain type of commit so that I can easily reference them later. For example, sometimes I implement certain changes, but I know I'm going to modify them sooner or later: so I usually write for the time being
in the commit message, so it is easier for me to just search the logs for such commits.
So, is there a way, common/best practice that is used in these cases? Or even a git tool I am not aware of?