fritz stelluto
development for digital media
berlin, london

SVN tag

Rolling back deployment with Jenkins

The task: reverting to a known stable build with Jenkins.
More →

Tagging a Jenkins build automatically

The task: coming up with a branching strategy to work with Subversion and Jenkins. More →

Installing Jenkins on OS X and Ubuntu

The task: setup a simple CI system for my Linode using Subversion, Jenkins, and Ant.
More →

SVN status codes

Running the status command in the command line version of subversion returns a list of files with a one letter code in front of each file name. Here's a list of those one letter codes and what they mean.
svn status M src/index.php (etc) More →

Copying files matching a pattern, preserving directory structure, with cpio

To copy a directory tree ignoring all the .svn folders, use this
cd DIR_FROM find . \! \( -name . -or -name ".svn" -or -path "*/.svn/*" \) -print | cpio -padv PTH_TO More →