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 "Nebula/Contributions/Setup IDE"

(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...")
 
Line 6: Line 6:
 
* [https://git.eclipse.org/r/#/settings/http-password Get your Gerrit password]
 
* [https://git.eclipse.org/r/#/settings/http-password Get your Gerrit password]
 
* Clone the following repo https://'''''yourname'''''@git.eclipse.org/r/nebula/org.eclipse.nebula.git
 
* Clone the following repo https://'''''yourname'''''@git.eclipse.org/r/nebula/org.eclipse.nebula.git
 +
 
    
 
    
 
   C:\>git clone https://'''''yourname'''''@git.eclipse.org/r/nebula/org.eclipse.nebula.git
 
   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/<big>'''''p'''''</big>/nebula/org.eclipse.nebula.git
  
* Change the push URI to https://'''''yourname'''''@git.eclipse.org/r/<big>'''''p'''''</big>/nebula/org.eclipse.nebula.git
 
 
    
 
    
 
   C:\>cd org.eclipse.nebula
 
   C:\>cd org.eclipse.nebula
Line 17: Line 18:
 
* Open your Eclipse IDE and open the Git perspective
 
* Open your Eclipse IDE and open the Git perspective
 
* Add a local git repository and find your freshly created repo
 
* Add a local git repository and find your freshly created repo
 
 
 
* Open Remotes/origin and open the context menu. Select Gerrit Configuration.
 
* Open Remotes/origin and open the context menu. Select Gerrit Configuration.
 
[[Image:nebula_ide1.png]]  
 
[[Image:nebula_ide1.png]]  
 
* Review and press Finish
 
* Review and press Finish
[[Image:nebula_ide2.png]]  
+
[[Image:nebula_ide2.png]]
 
+
* [http://wiki.eclipse.org/Gerrit All you need to know about Gerrit, and more.]
+
 
+
Please [https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Nebula 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>
+

Revision as of 11:18, 11 February 2015

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

Back to the top