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 "Forking Eclipse ICE"

(Creating the Fork)
Line 1: Line 1:
This page describes the process for creating a fork of the ICE project.  
+
This page describes the process for creating a fork of the ICE project. This assumes basic simmilarity with Git and that you have a Github account. For working with ICE, the fork will be a copy of the entire repository that you can edit and make changes to. Then, if you propose new content or bug fixes, you can submit a push request that could be added back to the main ICE prodject.  
  
  
Line 5: Line 5:
 
[[File:Github Fork Example.png]]<br>
 
[[File:Github Fork Example.png]]<br>
  
Go to the [http://github.com/eclipse/ice| GitHub ICE repository] and log in to GitHub. Press the "Fork" button in the upper right hand corner of the page.
+
Go to the [http://github.com/eclipse/ice| GitHub ICE repository] and log in to GitHub. Press the "Fork" button in the upper right hand corner of the page, as shown above.  
  
 
== Cloning the Fork Repository ==
 
== Cloning the Fork Repository ==
Follow the instructions for [[ICE_Build_Instructions#Getting_ICE_from_Git|cloning the Git repository]], but instead of <nowiki>https://github.com/eclipse/ice.git</nowiki>, use <nowiki>https://github/[your username]/ice.git as the URI</nowiki>.
+
Follow the instructions for [[ICE_Build_Instructions#Getting_ICE_from_Git|cloning the Git repository]], but instead of <nowiki>https://github.com/eclipse/ice.git</nowiki>, use <nowiki>https://github/[your username]/ice.git as the URI</nowiki>. Now you will be able to make commits and push your changes to your own fork repository on Github.  
  
  
 
== Pulling from the Master Branch ==
 
== Pulling from the Master Branch ==

Revision as of 09:59, 4 June 2015

This page describes the process for creating a fork of the ICE project. This assumes basic simmilarity with Git and that you have a Github account. For working with ICE, the fork will be a copy of the entire repository that you can edit and make changes to. Then, if you propose new content or bug fixes, you can submit a push request that could be added back to the main ICE prodject.


Creating the Fork

Github Fork Example.png

Go to the GitHub ICE repository and log in to GitHub. Press the "Fork" button in the upper right hand corner of the page, as shown above.

Cloning the Fork Repository

Follow the instructions for cloning the Git repository, but instead of https://github.com/eclipse/ice.git, use https://github/[your username]/ice.git as the URI. Now you will be able to make commits and push your changes to your own fork repository on Github.


Pulling from the Master Branch

Back to the top