andyskipper.com

a silicon jeremiad

Archive for October, 2008

An excellent introduction to NDepend

  • Filed under: CTO
Saturday
Oct 25,2008

While exploring the use of code metric tools for our current architecture, I came upon this fantastic intro to NDepend, by Andre Loker - an absolute must-read:

http://blog.andreloker.de/post/2008/07/08/NDepend-code-metrics-at-your-service.aspx

Wednesday
Oct 1,2008

Yoinked from dotnot.org: all you need to do is dump the repository, like so:

svnadmin dump /path/to/repo > reponame.dump
tar zcf reponame.tgz reponame.dump

Copy it to the other server, in whatever way suits, eg:

scp reponame.tgz hostname:/path/to/new/repo

Then set up the new repo on the target server:

cd /path/to/new
svnadmin create reponame
tar zxf reponame.tgz
svnadmin load reponame < reponame.dump

That’s it! Piece of cake