Blog archive: Sysadmin
Listing the affected files in a Subversion revision
Tuesday 24 November 2009
A quick trick that I'm finding very useful for those little deployments that don't require a full export of the Subversion repository. A little regex on the standard verbose output of the Subversion log like so:
svn log -r HEAD -v | egrep '^ +[A-Z]'
will output a list of the files included in the specified revision, e.g.:
M /trunk/apps/Feedback/views.py
A /trunk/fabfile.py
The letters "A", "M" or "D" denote whether the file was added, modified or deleted.
Setting up Apache monitoring with Munin
Wednesday 7 October 2009
Latest blog entries
Blog archive
Categories
- Apple 2
- Backend 5
- Business 2
- Company news 18
- Culture 6
- Design 6
- Front-end 3
- London 6
- Mashups 9
- Mobile 1
- Python 1
- Quality & standards 3
- Semantic web 2
- Subversion 4
- Sysadmin 2
- Technology & applications 16
- Web accessibility 1




