PowerShell and .svnignore

September 4th, 2010

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 ..

Comments are closed.