Reputation: 723
In svn I am trying to revert all txt files recursively through command line.
Upvotes: 2
Views: 2117
Reputation: 723
After lots of fiddling with command line I finally got it. The solution is as follow:
for /r %WorkingCopy% %%R in (*.txt) do if exist "%%R" (svn revert %%R)
Upvotes: 1