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 "RMF/Contributor Guide/Development Process"

< RMF
(Initial Version)
 
(University Contributors)
Line 12: Line 12:
  
 
[[Category:RMF]]
 
[[Category:RMF]]
 +
 +
== Contributing as Non-Committer at the University of Düsseldorf ==
 +
 +
We will eventually use Gerrit to process contributions from Students to RMF.  Those who want to contribute can set up their git as follows:
 +
 +
* git clone git://git.eclipse.org/gitroot/rmf/org.eclipse.rmf.git -o eclipse
 +
* git checkout develop
 +
* git checkout -b foobar
 +
* git remote add cobra gitosis@cobra.cs.uni-duesseldorf.de:org.eclipse.rmf.git
 +
* git push cobra foobar
 +
* Edit .git/config and add:
 +
  [branch "foobar"]
 +
    remote = cobra
 +
    merge = refs/heads/foobar
 +
 +
Setup is now complete.  To work on the code on branch foobar, do the following:
 +
 +
* Edit on branch foobar
 +
* Push (implicitly to cobra)
 +
* To update from the Eclipse repository:
 +
** git checkout develop
 +
** git pull
 +
** git checkout foobar
 +
** git merge develop
 +
 +
There may be a better way for doing all this.  Please improve if you know how.

Revision as of 14:47, 15 May 2012

We're still in the incubator phase - therefore, the release process is still being developed. Here are our guidelines so far:

The Most Important Stuff

  • Important: Never commit to master! (unless you are the release manager). Development takes place on the develop branch)
  • We use the Git Flow Process as our release process

Coding Guidelines

  • We use the default formating rules by Eclipse to format Java Code (Ctrl-Shift-F)
  • Don't format generated code (that makes it difficult to run diffs on generated code)

Contributing as Non-Committer at the University of Düsseldorf

We will eventually use Gerrit to process contributions from Students to RMF. Those who want to contribute can set up their git as follows:

 [branch "foobar"]
   remote = cobra
   merge = refs/heads/foobar

Setup is now complete. To work on the code on branch foobar, do the following:

  • Edit on branch foobar
  • Push (implicitly to cobra)
  • To update from the Eclipse repository:
    • git checkout develop
    • git pull
    • git checkout foobar
    • git merge develop

There may be a better way for doing all this. Please improve if you know how.

Back to the top