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

Gyrex/Contributor Guide/Obtaining Sources

Obtaining Source Code

Our regular (primary) SCM is Git. A list of available Git repositories can be found at git.eclipse.org/c/gyrex/. Contributions are welcome via Gerrit.

There are several ways to obtain a copy of each repository:

From the command line

 Git:
   git clone git://git.eclipse.org/gitroot/gyrex/gyrex-server
 
 or HTTP:
   git clone https://git.eclipse.org/r/gyrex/gyrex-server
 
 or SSH (authenticated):
   git clone ssh://<username>@git.eclipse.org:29418/gyrex/gyrex-server
 
 or HTTPS (authenticated):
   git clone https://<username>@git.eclipse.org/r/gyrex/gyrex-server

From an installed EGit plugin

First, verify that the default repository folder as set on the main Git preference page is to your liking.

Fork via GitHub

The folks at GitHub kindly setup mirrors of Eclipse Git repos at github.com/eclipse/. You may fork any repository you want there.

To compile properly you will also need to setup your Target Platform.

Website

The Gyrex web site is also maintained in Git. Contributions are welcome via Gerrit. The Eclipse Webmaster team maintains an infrastructures which publishes any commit automatically to all web servers.

 Git:
   git clone git://git.eclipse.org/gitroot/www.eclipse.org/gyrex

Back to the top