Reputation: 11881
Having just called:
svn rm someDirectory
but not having committed, how do I undelete the directory?
Upvotes: 5
Views: 2643
Reputation: 19225
svn revert --recursive <folder_name>
Will back out any changes recursively from folder_name downwards
Upvotes: 13