Skip to main content

Notice: This Wiki is now read only and edits are no longer 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 12: Line 12:
  
 
git clone ssh://<committerid>@git.eclipse.org/gitroot/riena/<repo><br/>
 
git clone ssh://<committerid>@git.eclipse.org/gitroot/riena/<repo><br/>
i.e.
+
i.e.<br/>
git clone ssh://ccampo@git.eclipse.org/gitroot/riena/org.eclipse.riena.git
+
git clone ssh://ccampo@git.eclipse.org/gitroot/riena/org.eclipse.riena.git<br/>
  
 
Authentication should be password (not ssh key) and you supply the regular committer password
 
Authentication should be password (not ssh key) and you supply the regular committer password
  
Non-committers can checkout the code with the URL
+
Non-committers can checkout the code with the URL<br/>
git clone git://git.eclipse.org/gitroot/riena/org.eclipse.riena.git
+
git clone git://git.eclipse.org/gitroot/riena/org.eclipse.riena.git<br/>
or
+
or<br/>
git clone http://git.eclipse.org/gitroot/riena/org.eclipse.riena.git
+
git clone http://git.eclipse.org/gitroot/riena/org.eclipse.riena.git<br/>

Revision as of 10:50, 16 December 2011

Riena on Git

Riena is stored in Git in 4 Git Repos

  • org.eclipse.riena.git (most of the active projects are here)
  • org.eclipse.riena.rap.git (contains riena bundle for running on top of RAP)
  • org.eclipse.riena.toolbox.git (contains all the bundles for the Riena Toolbox)
  • org.eclipse.riena.old.git (contains all the bundles that are no longer used by Riena but where still in the CVS history)


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

Back to the top