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.
Thanks!
If you are using Powershell the following will work.
gci -re -in *foo | %{ git reset $_ }
You can try restore the files with git restore '*.foo'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With