I am using SVN, I want to know is it possible to untrack a file in SVN? I mean I want to keep changes locally, I don't want to commit those. Is there something similar to gitignore in SVN?
I know I can delete a file from repo using SVN DELETE --keep-local, this will keep the local copy of the file however it will delete the file from repo also. I want to keep this file in repo however want to make sure that it's changes doesn't get committed? Is there any way where I can assure changes made in the specific file don't get committed? Cause on several occasions I accidentally committed file with my changes which caused few problems.