Pages

May 19, 2010

learning steps of SVN

A repository location, however, is always a URL.
Schema Access Method
file:/// direct repository access (on local disk)
http:// access via WebDAV protocol to Subversionaware
Apache server
https:// same as http://, but with SSL encryption.
svn:// access via custom protocol to an svnserve
server
svn+ssh:// same as svn://, but through an SSH tunnel.

C:\> svn checkout file:///X:/path/to/repos

C:\> svn checkout "file:///X|/path/to/repos"


I create a personal Repository on my local disk. It seems pointless to create a personal Repos as long as only me use my pc at beginning, but I think it's still good idea to keep it in case i can trace my history codes even on offline status. It's kind of "Time Machine". I just wonder it is possible to sync one folder to 2 repositories?

No comments:

Post a Comment