Ever been frustrated trying to get only the changed files from Subversion (SVN) so you can copy/deploy those files and not the entire branch to another environment? Drove me crazy, too. So I wrote a bash script to get a list of files from a specific svn changeset, and copy those files out of my […]
Continue reading
Tag Archives: SVN
Removing all .svn folders from a folder via Windows batch
I needed to delete all .svn subversion folders and the files within them and did not want to take the time to do it manually. This little command prompt script will recurse a folder and delete all folders names “.svn” and all the files within. for /d /r . %d in (.svn) do @if exist […]
Continue reading