tbaMUD's Public SVN Repository

As of 3/23/2008 the tbaMUD SVN repository has moved: http://tbamud.com/websvn/

svn checkout http://tbamud.com/svn/circlemud/circlemud tbamud

This will checkout the latest codebase repository to the tbamud directory on your machine. cd tbamud and start making whatever changes you want.

After the initial checkout your codebase will be up to date. But in the future before making any changes you should always update to the latest version by typing:

svn update

This will automatically update your tbamud directory with any changes that have been comitted to the repository (only developers can comitt changes).

Developers: To commit your changes back to the repository:

svn commit -m "comments about what changes you have made."

Other useful stuff:
svn diff - current diff of the repository and your changes
svn diff -r 59:60 - diff between version 59 and 60
svn commit --file tmp - for really verbose changes you can send a file.
svn log - view the comitt changes (what was submitted during comitt).
svn log -r 3:HEAD - view the last 3 comitt comments.

The SVN bible can be found:
http://svnbook.red-bean.com/en/1.4/svn-book.html