When returning files that have been modified locally, is there a way to exclude files? Due to circumstances beyond my control, my current workflow:
- Create diff files that I want to include
- svn status for a list of changes
- svn revert, copypasting files that were included in diff
- rm'ing residues - i.e. added files are not versioned
What I then will look something like this:
svn revert -R --exclude file1 --exclude file2 /my/path
source
share