There are several ways to remove svn binding from a directory and its sub-directories. However, in this post, we write a PowerShell script to perform this task. To do so, we have to remove all the enclosing directories named “.svn“.
Following PowerShell script first gets all the directories that we want remove and then, delete them one-by-one recursively.
ls -Include .svn -Recurse -Force | foreach { del $_.FullName -Recurse -Force }