Posts Tagged ‘windows’

Windows delete all tmp files command

Tuesday, July 12th, 2011 by Jesper Rønn-Jensen

Just a quick note to self about this tip i found. It is a Windows (XP) helpful command line snippet that removes all your temporary files. Delete all files in temp folder: DEL /F /S /Q %TEMP% Taken from the “A-Z Index of the Windows CMD command line”

Easy delete all .svn Subfolders in Windows Explorer

Tuesday, March 1st, 2011 by Jesper Rønn-Jensen

I had to repair a flawed Subversion repository recently (not all files were committed). I had my local repository checked out. This was the flawed part, containing only parts of the folders and files it should. Then, I got a zip file from the machine where it was working. Problem: It contained .svn folders from […]

Windows SVN pre-commit-hook

Thursday, June 10th, 2010 by Jesper Rønn-Jensen

At a current project I work on, we use a Windows server to run our subversion repository. I wanted to set up the pre-commit hook so that commits with empty comment are automatically rejected. All commit-hook example files that go with Subversion are written in bash (as unix servers tend to be the normal). Here […]