iCE Breaker’s Matrix

Somewhat damaged. . .

Archive for August, 2007

svnserve rc.d/init.d start up script for Fedora/RedHat

I forget where I found this at. But again, I figured I would share this since I’m sure others are looking for the same thing.
/etc/rc.d/init.d/svnserve

#!/bin/bash

#

#   /etc/rc.d/init.d/subversion

#

# Starts the Subversion Daemon

#

# chkconfig: 2345 90 10

# description: Subversion Daemon

 

# processname: svnserve

 

. /etc/rc.d/init.d/functions

 

[ -x /usr/bin/svnserve ] || exit 1

 

### Default variables

. /etc/sysconfig/subversion

 

RETVAL=0

prog="svnserve"

desc="Subversion Daemon"

 

start() {

  [...]

Visual Studio + Subversion

I recently found Ankh which integrates SVN into Visual Studio. Just thought I’d throw this out there. I haven’t had much time to tinker with the Add-In yet, but so far I was able to easily Commit and Update files. Works with authentication as well.

[...]