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 "EGit/Contributor Guide"

(Obtaining Sources)
(Contributing Patches)
Line 25: Line 25:
 
= Contributing Patches  =
 
= Contributing Patches  =
  
See [http://repo.or.cz/w/egit.git?a=blob;f=SUBMITTING_PATCHES;h=5d08c182f3427326df3d9a793f7bb359d006ed52;hb=HEAD SUBMITTING_PATCHES] for instructions on how to submit patches.
+
Review the following style guides:
 +
* [http://egit.eclipse.org/w/?p=egit/parallelip-jgit.git;a=blob;f=SUBMITTING_PATCHES;hb=HEAD JGit SUBMITTING_PATCHES]
 +
* [http://egit.eclipse.org/w/?p=egit/parallelip-egit.git;a=blob;f=SUBMITTING_PATCHES;hb=HEAD EGit SUBMITTING_PATCHES]
 +
 
 +
Currently the project is alpha-testing [http://code.google.com/p/gerrit/ Gerrit Code Review] for Git based patch submission and review.  To use the alpha testing instance hosted at eclipse.org:
 +
* [http://egit.eclipse.org/register Register a user account]
 +
* Add one or more public SSH keys
 +
* Upload your patch from Git to the target project:
 +
<pre style="width: 40em">
 +
git push ssh://username@egit.eclipse.org:29418/egit/parallelip-jgit.git HEAD:refs/for/master
 +
</pre>

Revision as of 12:09, 2 October 2009

Warning2.png
Draft Content
This page is currently under construction. Community members are encouraged to maintain the page, and make sure the information is accurate.


EGit
Website
Download
Community
Mailing ListForumsIRCmattermost
Issues
OpenHelp WantedBug Day
Contribute
Browse SourceProject Set File

Obtaining Sources

EGit and JGit are currently self hosted in Git. To obtain a copy of each repository:

From the command line:

git clone git://egit.eclipse.org/egit/parallelip-jgit.git jgit
git clone git://egit.eclipse.org/egit/parallelip-egit.git egit

From an installed EGit plugin:

  • File > Import > Git Repository
  • Enter URL
git://egit.eclipse.org/egit/parallelip-jgit.git
  • Import projects
  • File > Import > Git Repository
  • Enter URL
git://egit.eclipse.org/egit/parallelip-egit.git
  • Import projects

Contributing Patches

Review the following style guides:

Currently the project is alpha-testing Gerrit Code Review for Git based patch submission and review. To use the alpha testing instance hosted at eclipse.org:

git push ssh://username@egit.eclipse.org:29418/egit/parallelip-jgit.git HEAD:refs/for/master

Back to the top