¿Hay alguna forma de mostrar el git-diff filtrado por un patrón determinado?
Algo como
git grepdiff pattern
changed file
+++ some sentence with pattern
changed file 2
--- some other pattern
Desafortunadamente, la solución más simple no es lo suficientemente buena.
git diff | grep pattern
+++ some sentence with pattern
--- some other pattern
# not an option as doesn't put the filename close to the match
Vine con una solución usando awk
git diff | awk "/\+\+\+/{f = \$2}; /PATTERN/ {print f \$0} "
Pero me encantaría saber que existe un comando para esto.