filtered git diff

25-06-21

%

How to browse git diff of two hashes but exclude some files. In this case any file with test in the name won't be in the diff.

gd xxxsha001xxx...xxxsha002xxx -- $(gd --name-only xxxsha001xxx...xxxsha002xxx | rg --invert-match test)

"gd" == "git diff", via zsh git plugin

source

- [ git]

all snippets