Joel
Joel

Reputation: 11881

Undelete in SVN working copy

Having just called:

svn rm someDirectory

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

Upvotes: 5

Views: 2643

Answers (1)

pauljwilliams
pauljwilliams

Reputation: 19225

svn revert --recursive <folder_name>

Will back out any changes recursively from folder_name downwards

Upvotes: 13

Related Questions