I've seen similar questions asked, but not quite the same...
I have a changelist (called "revertme") and I'd like to just be able to revert all the files in the changelist in one fell swoop. svn help revert seems to indicate I can do that with
svn revert --cl revertme
but when I try that command I get
svn: E205001: Not enough arguments provided
Any advice?
Add the directory path, and include the recursive option:
svn revert --recursive --changelist <name of changelist> <path>
For example, to recursively revert changes listed in changelist
readme
starting from the current directory:or