| When you are writing documents using latex under svn, you probably want to ignore some auxiliary (like .toc, .aux, .out) files that latex compilation produces. Even the dvi and pdf files you may not want to put under svn. To do that, you can easily set the svn:ignore property to ignore those files and stop uploading unnecessary to you svn server. To set the property, open a terminal and type: $ svn propedit svn:ignore /path/to/folder Your default will be opened, and you will need to write the files that you want to be ignored. In that case (latex auxiliary files), here is on list that you can write there: *.bbl
After that, just save the file and do a commit.*.backup *.dvi *.blg *.out *.log *.ps *.aux *.bl *.lot *.lof *.toc *.bak *.snm *.nav |