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

Nebula/Contributions/Setup IDE

< Nebula‎ | Contributions
Revision as of 11:16, 11 February 2015 by Unnamed Poltroon (Talk) (Created page with "== Setup Your IDE== To provide patches to Nebula, create an Eclipse account, get your Gerrit password and push your changes to the Gerrit git repo. * [https://dev.eclipse.org...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Setup Your IDE

To provide patches to Nebula, create an Eclipse account, get your Gerrit password and push your changes to the Gerrit git repo.

 C:\>git clone https://yourname@git.eclipse.org/r/nebula/org.eclipse.nebula.git
 
  • Change the push URI to https://yourname@git.eclipse.org/r/p/nebula/org.eclipse.nebula.git
 C:\>cd org.eclipse.nebula
 C:\org.eclipse.nebula>git remote set --push origin  https://yourname@git.eclipse.org/r/p/nebula/org.eclipse.nebula.git
 
  • Open your Eclipse IDE and open the Git perspective
  • Add a local git repository and find your freshly created repo


  • Open Remotes/origin and open the context menu. Select Gerrit Configuration.

Nebula ide1.png

  • Review and press Finish

Nebula ide2.png

Please always use file a bug and use the following commit message:

Bug bugnumber  bug description 
<empty line>
Exact changes you made

Signed-off-by: Wim Jongman <wim.jongman@remainsoftware.com>

To update an Existing commit, use the change Id that Gerrit has created for your original commit:

Bug bugnumber  bug description 
<empty line>
Exact changes you made

Change-Id: yaddieyaddieyaddieyaddieyaddieyaddieyaddieyaddie
Signed-off-by: Wim Jongman <wim.jongman@remainsoftware.com>

Back to the top