I would like to run
git reset *.foo
but this errors out.
I think I need to use a pipe, but I\'m not sure how to do this.
Th
This should work in cygwin and unix env
git reset $(git diff --name-only --cached | grep *.foo)