in reply to Re^2: Learning How to Use CVS for Personal Perl Coding Practices
in thread Learning How to Use CVS for Personal Perl Coding Practices

Dear Rhose,
[snip] svn://myserver/myrepo [snip]
Where and how do you set/define this server repository? Say if I am only working locally for myself.

---
neversaint and everlastingly indebted.......

Replies are listed 'Best First'.
Re^4: Learning How to Use CVS for Personal Perl Coding Practices
by Rhose (Priest) on Nov 03, 2005 at 17:03 UTC
    Read chapters 1,2,3,5, and 6 of The SVN Book referenced in the posts above.

    Basically, instead of writing to a local file, you can share your repository (make it available for people on other computers) using a Subversion daemon or Apache. This takes a little bit of effort to set up, but it works well.

      If he is only using this for his own code and for code contributed by those with an account on the same machine then local repository access is sufficient. He can access it remotely (via ssh) with a url like svn+ssh://machine/path/to/repository

      - caedes

Re^4: Learning How to Use CVS for Personal Perl Coding Practices
by caedes (Pilgrim) on Nov 04, 2005 at 04:00 UTC
    The url for a local repository is file:///path/to/repository

    - caedes