By invoking the following powershell commands, svn binding can be removed effectively from the current source directory.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-ChildItem -Include .svn -Recurse -Force | ForEach-Object { del $_.FullName -Recurse -Force } |
It just traverses all the subdirectories of the current directory and remove its enclosed .svn directories. As a result, the associated svn bindings get removed.