Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "SVN Howto"

(SVN Repository Paths)
Line 23: Line 23:
 
{| style="width:60%;" border="0" cellpadding="2"  
 
{| style="width:60%;" border="0" cellpadding="2"  
 
| '''/svnroot/technology''' || Technology Project
 
| '''/svnroot/technology''' || Technology Project
 +
|-
 +
| '''/svnroot/stp''' || STP Project ''(with svn+shh:// protocol)''
 
|-
 
|-
 
|}
 
|}
 
  
 
== See also ==
 
== See also ==

Revision as of 06:21, 3 December 2007

There are several ways to get the source for the Eclipse projects. Most developers are actually developing their own plug-ins and are interested in browsing the Eclipse source and using it during debugging. For this, you can either browse the SVN repository online or use the source included in the Eclipse SDK download. The download contains source zips which can be attached to jars in the SDK's Java tooling and used for browsing and debugging.


Anonymous SVN

Anonymous SVN is available via http or by using the svnserve protocol:


Committer access to SVN

Developers with commit rights have individual user ids and passwords in the Eclipse project development repository. As a committer you can use SSH (Secure SHell) to connect to the SVN repository using a subversion plugin or via the command line. Committers can use svn+ssh or https:


SVN Repository Paths

Use the following repository paths to connect to the Eclipse projects:

/svnroot/technology Technology Project
/svnroot/stp STP Project (with svn+shh:// protocol)

See also

Back to the top