Get Subversion revision information into your source code files
Thursday, September 8th, 2005A quick Python script to update the revision information in your files
A quick Python script to update the revision information in your files
Turning off contextual, line-based merging of changes from the server during an update into your working file even for text based files.
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 […]
In case anyone needs to make a windows batch file to automate Subversion backups, here is mine.
The windows task scheduler runs this batch file once a day to make a daily backup of my Subversion repository. You’d have to change the filepaths and such to use it, but maybe it’s useful.
DailyBackup.bat
::Reset final backup storage:
rmdir […]
Getting the latest version of Subversion for my Ubuntu system