I'm always having troubles with svn:ignore, but this time I think I may be attempting something impossible.
assuming dir structure:
/
/foo
/bar
/web
/uploads
/assets
/avatars
/fu
/*.jpg
/ba
/*.jpg
keepme.jpg
keepmetoo.jpg
I want to be ignore all subfolders of the avatars directory but not the files of that directory (keepme.jpg, keepmetoo.jpg).
The avatar subfolders (fu, ba) are auto generated and the names cannot be predetermined, so need to completely ignore all /avatar subfolders.
Is this possible? and how?
Edit we would prefer not to use post-commit hooks. This is simply a matter of preference. We have a lot of well established applications and have developed a standardised way of doing things and post commit hooks simply haven't been utilized yet. We would simple prefer not to add any unnecessary additional moving parts. Frankly it is more likely we would address the directory structure (which is no small task) before considering adding post-commit hooks.