Results 1 to 2 of 2

Thread: question about svn use

  1. #1
    Join Date
    Jun 2006
    Beans
    161
    Distro
    Ubuntu 13.10 Saucy Salamander

    question about svn use

    I have a django project that I work on on my home computer. I decided to set of a SVN repository on my webspace so I can more easily make backups.

    I have everything set up, and the repository is woeking fine. When I go to http://svn.example.com I see "/ - Revision 1: /", and then the files of my project.

    What I don't understand is exactly how this is all supposed to work. Do I continue development from the directory I project is in now, or am I supposed to make a new one, then use "svn co http://svn...."? Or am I supposed to do this stuff from within the svn directory on my webspace via SSH? All the tutorials seem to skip this kind of thing...

  2. #2
    Join Date
    Feb 2007
    Beans
    4,045
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: question about svn use

    First you import it.
    Code:
    svn import your-project/ http://svn.example.com/trunk
    http://svnbook.red-bean.com/en/1.4/s...tour.importing

    Then you check out a copy:
    Code:
    mv your-project/ your-project.old/
    svn co http://www.example.com/trunk your-project
    And start editing.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •