how do I use svn in eclipse?
Posted
by
firesoul453
on Stack Overflow
See other posts from Stack Overflow
or by firesoul453
Published on 2012-11-05T17:27:28Z
Indexed on
2012/11/07
17:00 UTC
Read the original article
Hit count: 422
I'm trying to create my own SVN server so I can work on my android projects everywhere.
I have an VPS and I installed svn, I set up the directory and added a use to the password file.
After a while I finally managed to create a project with
svn import -m "initial import" . file:///home/admin/svn/reposvn/testp/trunk
But I don't understand? Can I only import project that are on my server? If thats the case I could just use ftp and not worry about svn at all.
What I would like to do is have a url to use in things like eclipse.
my subdomain points to /home/admin/svn/
and then I typed in /reposvn
So I tried the urls
http://(mydomain)/reposvn
and
svn://(mydomain)/reposvn
but neither worked Says Detected a cycle while processing the operation svn: Redirected cycle detected for URL ....
I also set up daemon or whatever with svnserve -d
any ideas? Thanks!
© Stack Overflow or respective owner