Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Current »

So you are ready to commit to OpenESB projects?! This page details how to become a committer however note that it does assume that the reader is familiar with development with java, bitbucket and git command line. We'll user OpenESB Components as an example in the following sections.

Source code repository

We are using a git repository from Bitbucket : https://bitbucket.org/openesb/openesb-components-3

You don't have rights to push directly into the community master repository. To get involved, please follow these steps :

  • Create a fork of the repository
  • Clone your remote repository
  • Apply your changes (in the master branch or another one)
  • Commit your changes in your local repository
  • Push them in your remote repository
  • Create a pull request to include your changes into the community repository

Keeping your fork up to date

git remote add upstream git@bitbucket.org:openesb/openesb-components-3.git 
git remote -v 
git pull upstream master 


  • No labels