PowerShell and .svnignore
Sharing two useful svn Powershell scripts:
function svn_ignore {
svn propset svn:ignore . -F c:\dev\Misc\.svnignore -R
}
function svn_add {
svn st | %{ if ($_ -match “\?\s+(.*)”) { svn add $matches[1] } }
}
More and a sample .svnignore file here ..


