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 "Riena/Git"

Line 1: Line 1:
 +
{{#eclipseproject:rt.riena}}
 
Riena on Git
 
Riena on Git
  
 +
===Location===
 
Riena is stored in Git in 4 Git Repos
 
Riena is stored in Git in 4 Git Repos
  
Line 9: Line 11:
  
  
 +
===Checkout===
 
As pointed out at [[GIT | GIT Wiki page]] committers checkout the code with the url
 
As pointed out at [[GIT | GIT Wiki page]] committers checkout the code with the url
  
Line 23: Line 26:
  
 
A list with the Git Repos and links is available [http://git.eclipse.org/c/?ofs=150 here]
 
A list with the Git Repos and links is available [http://git.eclipse.org/c/?ofs=150 here]
 +
 +
===Workspace setup (for committers)===
 +
* Start Eclipse IDE with blank workspace
 +
* Set your target platform with equinox sdk and rcp sdk as before
 +
* File -> Import -> Projects from Git
 +
* First Clone git clone ssh://<committerid>@git.eclipse.org/gitroot/riena/org.eclipse.riena.git
 +
* supply your committer password
 +
* clone to a local location where you store your gitrepos i.e. c:/git-repos/org.eclipse.riena
 +
* after the clone you can directly import the projects from that location into your workspace
 +
* open in org.eclipse.riena.releng the projectSet.psf file and import all projects into your workspace
 +
* you should have no compile errors (other than a missing API baseline)

Revision as of 05:38, 20 December 2011

{{#eclipseproject:rt.riena}} Riena on Git

Location

Riena is stored in Git in 4 Git Repos


Checkout

As pointed out at GIT Wiki page committers checkout the code with the url

git clone ssh://<committerid>@git.eclipse.org/gitroot/riena/<repo>
i.e.
git clone ssh://ccampo@git.eclipse.org/gitroot/riena/org.eclipse.riena.git

Authentication should be password (not ssh key) and you supply the regular committer password

Non-committers can checkout the code with the URL
git clone git://git.eclipse.org/gitroot/riena/org.eclipse.riena.git
or
git clone http://git.eclipse.org/gitroot/riena/org.eclipse.riena.git

A list with the Git Repos and links is available here

Workspace setup (for committers)

  • Start Eclipse IDE with blank workspace
  • Set your target platform with equinox sdk and rcp sdk as before
  • File -> Import -> Projects from Git
  • First Clone git clone ssh://<committerid>@git.eclipse.org/gitroot/riena/org.eclipse.riena.git
  • supply your committer password
  • clone to a local location where you store your gitrepos i.e. c:/git-repos/org.eclipse.riena
  • after the clone you can directly import the projects from that location into your workspace
  • open in org.eclipse.riena.releng the projectSet.psf file and import all projects into your workspace
  • you should have no compile errors (other than a missing API baseline)

Back to the top