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

EGit/GitHub/ContributorGuide

< EGit‎ | GitHub
Revision as of 10:55, 20 April 2011 by Caniszczyk.gmail.com (Talk | contribs) (Builds)

EGit also provides tools for integrating with GitHub and Mylyn tasks.

Obtaining Sources

  • File > Import > Git > Git Repository
  • Enter URI:
git://egit.eclipse.org/egit-github.git
  • Import projects
  • Download dependencies:
    • automagically: open file org.eclipse.mylyn.github-feature/github.target gitweb and select 'Set as Target Platfrom'.

Builds

EGit GitHub builds run on build.eclipse.org via Hudson using

Hudson

Nightly builds can be obtained via our p2 repository:

Contributing Patches

We accept patches via our Gerrit instance: http://egit.eclipse.org/

Since git can have multiple remotes, you can define one to be used to refer to Gerrit to save typing. Inside of a checked out repository:

cd path/to/egit-github
git config remote.review.url ssh://username@egit.eclipse.org:29418/egit-github.git
git config remote.review.push HEAD:refs/for/master

You can now submit review requests from either repository using:

git push review

To learn more about contributing patches to Gerrit, see the main EGit Contributor Guide.

Back to the top