« FastCGI: the way ahead? | Main | GTalk is now open »

Old habits die hard

After using CVS for the last 10 years, the cvs sequence is hardwired between my brain and my hands when I think about source control.

So for the time being, I'll use this:

melo@roadrunner(~)$ cat ~/bin/cvs
#!/bin/sh
#
# cvs wrapper: old habits die hard, and don't remember which VCS I'm using most of the time
#

if [ -d CVS ] ; then
  /usr/bin/cvs $@
elif [ -d .svn ] ; then
  svn $@
else
  darcs $@
fi

That covers the three source control systems I use on a regular basis.

Technorati Tags: , ,