I've downloaded subversion server and client RPM's from Collabnet, and installed it. It was unpacked into opt/CollabNet_Subversion directory.
But when I try to run /bin/svn
a message "this is not a working copy" is shown. I'm trying to find documentation onlyne, but it seems to be poor.
Must I make sth or run a script to configure it?
I'm a rookie in Subversion. Thanks for helping!
PS: System: Linux Suse 11.2 SVersion: 1.7.6-1
In order to use Subversion (or any version control software), you must:
svnadmin create
command to do that.)svn checkout
command for that).svn commit
command for that).For creating the repository, take a look at Chapter 5 of the Subversion on line manual. Then, go through chapter #1 and chapter #2 to get the basic understanding how Subversion (and version control) works and use the repository you created to help you learn how to use Subversion.
That will give you a general understanding you'll need. Once you get the basics out of the way, you can go through the rest of the book.