subversion update helper

General chat related to ScummVM, adventure gaming, and so on.

Moderator: ScummVM Team

Post Reply
User avatar
maximus
Posts: 102
Joined: Sun Jan 06, 2008 4:17 pm
Location: Toronto, Ontario

subversion update helper

Post by maximus »

I check the scummvm commits periodically, and the process usually goes a little something like this:

1. svn info (so I know where my working copy is at)
2. svn up (get changes)
3. svn log -v -r[version from svn info]:head (list commit notes)

I wrote a little bash script to automate this

Code: Select all

#!/bin/bash

T=`svn info | sed -n 's/Revision: \(.*$\)/\1/p'`
svn up && svn log -v -r$T:head
Nothing fancy, and it works in any svn working directory, but since I wrote it for scummvm, figured I'd share :)
User avatar
Julien
ScummVM Developer
Posts: 25
Joined: Wed Jul 11, 2007 2:45 am
Location: Boston, USA

Post by Julien »

Not sure if you know about it already, but there is a RSS feed on the scummVM cia.vc webpage:

http://cia.vc/stats/project/scummvm
http://cia.vc/stats/project/scummvm/.rss
User avatar
maximus
Posts: 102
Joined: Sun Jan 06, 2008 4:17 pm
Location: Toronto, Ontario

Post by maximus »

Julien wrote:Not sure if you know about it already, but there is a RSS feed on the scummVM cia.vc webpage:

http://cia.vc/stats/project/scummvm
http://cia.vc/stats/project/scummvm/.rss
I did not know about that. Thanks. I still want the updated code though, not just the commit logs, but thanks for the link :)
Post Reply