Reputation: 1
Is there a way using SVN CMD line or tortoise to remove/delete all externals recursively? We need to start over we have many externals that were set incorrectly.
Upvotes: 0
Views: 2130
Reputation: 28259
I'm pretty sure you can use propdel
with -R
which stands for recursive.
svn propdel -R svn:externals
Upvotes: 5