The IDE enables you to place any project you are working on under version control. You effectively import your sources into the remote repository. To do so, you need to be able to access a Subversion repository which you have write privileges for.
The IDE supports the following Subversion protocol types:
Protocol | Access Method | Example |
---|---|---|
file | Direct repository access (on local disk) | file:///repository_path[@REV] |
http | Access via WebDAV protocol to a Subversion-aware server | http://hostname/repository_path[@REV] |
https | Access via HTTP protocol with SSL encryption | https://hostname/repository_path[@REV] |
svn | Access via custom protocol to an svnserve server | svn://hostname/repository_path[@REV] |
svn+ssh | Access via SVN protocol through an external SSH tunnel | svn+ssh://hostname/repository_path[@REV] |