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

Line 1: Line 1:
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.  
+
This page describes the process for creating a fork of the ICE project. This assumes basic simmilarity with [http://git-scm.com/downloads 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 pull 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, as shown above.  
+
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 ==

Revision as of 10:38, 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 pull 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