svn - How to import an unversioned directory in to local repository in smartsvn? -
i'm starting use smartsvn , can't import directory local repository. gives me error shown in figure.
i have configured c:\repo local directory don't know how choose in step in import repository dialog.
could tell me how select local repository import projects?
smartsvn does not support local repository access (aka file://) protocol. you'll need start server use repository on local machine.
based on screenshot appear using windows. easiest process download windows vanilla subversion installer wandisco. once that's installed should able start svnserve command prompt so:
svnserve -d -r c:\repo
then you'll able access repository via svn://127.0.0.1/
in smartsvn. if svnserve stopped or computer restarted you'll need repeat process. if want more permanent setup i'd suggest setting svnserve service on windows covered in svn book.
Comments
Post a Comment