questions about using svn

Posted by ajsie on Stack Overflow See other posts from Stack Overflow or by ajsie
Published on 2010-03-30T23:24:12Z Indexed on 2010/03/31 0:03 UTC
Read the original article Hit count: 297

Filed under:
|
|

i have set up a svn repository in a remote ubuntu server using webdav (http://ip/svn).

but i have some questions:

  1. should i create one svn repository for each project folder? so i should use "svnadmin create" 5 times for 5 projects? or should i import them to seperate folders in the svn repository?

  2. should i after i have created a svn repo, import one project folder into it with "svn import" and then DELETE my original local folder thus only having it in the svn repo in the remote ubuntu server? is this safe or should i still have a local copy for some reason (cause i wont work in that one)?

  3. i use netbeans to check out projects from svn repo, then i edit the files and commit the changes. but how should i do to update the live web server content (in /var/www)? should i in my ubuntu server use "svn checkout" and check it out to /var/www or should i use netbeans to check out to a local folder and then upload the files to /var/www with ftp or webdav (and which one of them should i use)?

  4. so i got a svn repo and lets say 4 programmers are working with it, checking out and commiting. how do i check what is happening in the repo, which one made which changes, and all the changes from day 1 to day 213? does netbeans/eclipse letting me see this kind of information or do i download another application for it?

  5. i should have one svn user for each programmer in the ubuntu server? is this accomplished by using "htpasswd" 4 times for 4 programmers? how do i couple all these users to same group so that i could modify file access specific for the svn group and all its members?

© Stack Overflow or respective owner

Related posts about svn

Related posts about ubuntu