tags:

views:

841

answers:

1

Having just called:

svn rm someDirectory

but not having committed, how do I undelete the directory?

+8  A: 
svn revert --recursive <folder_name>

Will back out any changes recursively from folder_name downwards

Visage
Ah, recursive! That's what I was missing. Thanks!
Joel