Suppose I have a project that uses SVN for version control and includes .tex files. Collaborators may wish to typeset/compile these .tex files into .pdf files in order to view how they look. This has a side effect of creating the .aux, .log, .gz, and of course the .pdf file in the directory of the .tex file. Since these are redundant, is it possible to tell SVN to ignore those file extensions when running a command like "svn status?" That way the repo only has .tex files in it and does not waste space on those additional files.
I found this question, which I believe asks the more or less the same thing as mine:
(1) SVN Update specific files from repository only
My issue with it, is that it seems like a lot of work for a little feature. Basically if SVN could just be told
"hey, these files are actually semantically irrelevant/vacuous/redundant for the project. You don't need to add them or put them under version control!," that would be great.