I want to modify my .gitignore
so I can ignore all .jpg
files which aren't in /public/assets/images
.
I have tried the following:
(!/public/assets/images/)!*.jpg
/public/assets/images/!*.jpg
However besides those two I am not sure what else to try.
Try ignoring all jpg files, then explicitly unignoring /public/assets/images
:
**/*.jpg
!/public/assets/images/*.jpg
The following answers explore this tangentially, and may be useful:
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