Tag: SCM

6 posts

Productividad del programador: Arreglando el problema equivocado

Chema apunta hacia un comunicado de prensa de Gartner identificando los grandes retos de las IT, y se centra en uno: “La productividad de las tareas de programación”.Chema propone “menos lineas de código”, y Gartner se centra en “alcanzar la reusabilidad”, y supongo que ambos enfoques tienen cierto

May 12, 2008

Compiling Subversion 1.5 in Cygwin

Seems like I finally got the trick to compile Subversion in Cygwin.It all boiled down to using two options in the configure script: ./configure –enable-all-static –with-sasl=noThough this is the main trick, I’ve noted it down in a new note: Compiling SVN 1.5 in CygwinUpdate: Now, that’s funny. There

May 29, 2007

Subversion scripts revisited

Eleven months later Cygwin and SVN on Windows#!/usr/bin/bash## Call this script or copy and paste the content into your bash_rc script or similar# profile script.## Copy from heresub () {svn --username [myuser] --password [mypass] $*}subswitch() { if [ $# != 4 ] then echo "Usage: Switchin

Nov 16, 2006

Code review tools, someone?

I’ve been playing lately with the idea of a “code reviewing” support tool.I don’t mean an automatic review or defect-detection tool like checkstyle, pmd, hammurapi or others. I mean a tool that allows someone to review committed code in a repo, and annotate it, or even grading the commit with a pass

Apr 20, 2006

Merge tracking in Subversion

I’ve started using svnmerge.Merge is one of the problems we’re presently facing in our project. The project is massively parallel, and we’ve stablished a repository layout based upon some form of ‘stability ladder’.Every team is responsible of promoting its products to a state in which they can be u

Mar 1, 2006

Subauthz ready?

I think Subauthz is finally ready to be used. The feature-set is nearly completed, and I think it’s quite enough to manage Subversion’s current authentication features for one or multiple repositories.I’m trying to get the time to write a quick tutorial on usage, though it must be quite straightforw

Jan 15, 2006