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.