Archive for the 'Answer my searches' Category

Get Subversion revision information into your source code files

Thursday, September 8th, 2005

A quick Python script to update the revision information in your files

How to turn off “auto-merge” in Subversion

Thursday, September 1st, 2005

Turning off contextual, line-based merging of changes from the server during an update into your working file even for text based files.

Calling Inno Setup from the command line

Wednesday, August 31st, 2005

I finally figured out how to call the inno setup program from my build script

Python Madness - Crash your computer in just 3 lines of code

Thursday, August 25th, 2005

A script that takes 10 seconds to write, 20 minutes to stop

Subversion tips for today

Monday, August 15th, 2005

Here are two simple Subversion tasks and examples of how to do them:
How to change a Subversion log message you’ve already commited:

svnadmin setlog [repopath] -r [revision] [path to text file with new log message] –bypass-hooks

Example:

svnadmin setlog c:/ARMS -r 186 c:/newlog.txt –bypass-hooks

More help:

svnadmin help setlog

How to get a list of all of the files in a […]