Sven Lange

Main menu

Skip to primary content
Skip to secondary content
  • Home
  • About

Category Archives: Versioning

Subversion Client for Windows

Posted on 2011/01/26 by Sven Lange

If you hate that TortoiseSVN slows down your Windows developer machine and you need to grab some source code from a Subversion server there is the following alternative.

Just use a command line tool that is lightning fast: Subversion for Windows

To checkout some source code simple type: svn co <host>

Posted in Versioning | Tagged Subversion, svn

Recursively remove Subversions .svn folders

Posted on 2010/02/04 by Sven Lange

To remove all the sometimes pretty annoying .svn folders here are some very helpful lines of code.

for /f "tokens=* delims=" %%i in ('dir /s /b /a:d *svn') do (
rd /s /q "%%i"
)

Just place the above lines into a file called removeSvn.cmd, place it into the polluted folder and then run it. Done.

Another resources on this topic:

  • Recursively remove all .svn directories
Posted in Versioning | Tagged Subversion

Categories

  • Conference
  • Frontend
  • Grails
  • Linux
  • Server
  • Testing
  • UML
  • Versioning

Tags

Acegi Cache Coverage Ehcache FOSDEM Google Go Grails HTML5 JAOO Java JDK localStorage Memory Mocking Silverlight SLES Smoothie Charts storeXPath Subversion Suse svn SystemTap Tomcat UML UpdateChecker Websocket Webtest yUML

Archives

  • February 2011
  • January 2011
  • December 2010
  • November 2010
  • October 2010
  • August 2010
  • February 2010
  • January 2010
  • June 2009
  • July 2008

Notice

None of the comments or opinions expressed here should be considered of my past or current employer(s). Code provided is as-is without any guarantees or warranties.
Proudly powered by WordPress