6
I wonder if there’s any way to use the git log
to list commits, filtering through a specific message.
Example:
git commit -am "Correção do ícone de exclusão na listagem de usuários"
In the above case, I would like to apply a git log
and see only the list of commits that had the word "user".
It is possible to do this?
Related: https://answall.com/questions/323641/achar-substring-em-mensagens-de-commits-recent
– Wallace Maxters