Hybserv source access
General distribution sites
You can get
Hybserv2 from the following places:
Anonymous Subversion server
For
Subversion∞ (SVN for short) access through svnserve you'll need Subversion
client∞.
The following example will fetch the current
development version into new directory, named hybserv in
current working directory:
svn co https://hybserv2.svn.sourceforge.net/svnroot/hybserv2/trunk hybserv
Of course, it is possible to fetch an
exact version too. The following example does that, allowing us to get REL_1_9_0 release:
svn co https://hybserv2.svn.sourceforge.net/svnroot/hybserv2/tags/REL_1_9_0 hybserv
When you have a working SVN copy,
updating it is almost trivial:
How to get prepare a patch against your SVN copy? Easy!
cd hybserv
svn diff > ../my-hybserv-patch.diff
Of course, if you think your patch can help, let us know.
NOTE: You can read more on Subversion on O'Reilly's
Version Control with Subversion∞ book (which we recommend strongly as an
excellent source of SVN knowledge), as well as some
other∞ books.