I'm working on a project with the following git naming convention :
For a feature, we name our commit by starting with feat like that :
feat(myFeature): my feature description
For a fix, its the same but we use the keyword fix like this:
fix(myFix): my fix description
To improve myself, i want to know when my commit are fixed. I'm not a git guru, i know there are possibilities with git command with grep and blame but i don't know how to mix them.
I'm looking for a git shell command with my name in input which gives me on output all fix commit on my commits.