Skip to content

Latest commit

 

History

History
108 lines (74 loc) · 4.71 KB

CONTRIBUTING.md

File metadata and controls

108 lines (74 loc) · 4.71 KB

Contributing

In addition to filing bugs, you may contribute by submitting patches to fix bugs in the library. Contributions may be submitting to http://review.couchbase.com. We use Gerrit as our code review system - and thus submitting a change requires an account there. Note that pull requests will not be ignored but will be responded to more quickly and with more detail in Gerrit.

For something to be accepted into the codebase, it must be formatted properly and have undergone proper testing. While there are no formatting guidelines per se, the code should look similar to the existing code within the library.

Branches and Tags

Released versions of the library are marked as annotated tags inside the repository.

  • The master branch represents the mainline branch. The master branch typically consists of content going into the next release.

Contributing Patches

If you wish to contribute a new feature or a bug fix to the library, try to follow the following guidelines to help ensure your change gets merged upstream.

Before you begin

For any code change, ensure the new code you write looks similar to the code surrounding it. We have no strict code style policies, but do request that your code stand out as little as possible from its surrounding neighborhood (unless of course your change is stylistic in nature).

If your change is going to involve a substantial amount of time or effort, please attempt to discuss it with the project developers first who will provide assistance and direction where possible.

Additionally, note that the library uses C89 (AKA "ANSI C") with some extensions that are known to work on both GCC and Visual Studio for .c files, and C++11 for .cc files. Please ensure your code conforms to this, unless the new code is specific to a given platform.

For new features

Ensure the feature you are adding does not already exist, and think about how this feature may be useful for other users. In general less intrusive changes are more likely to be accepted.

For fixing bugs

Ensure the bug you are fixing is actually a bug (and not a usage) error, and that it has not been fixed in a more recent version. Please read the release notes as well as the issue tracker to see a list of open and resolved issues.

Code Review

Signing up on Gerrit

Everything that is merged into the library goes through a code review process. The code review process is done via Gerrit.

To sign up for a gerrit account, go to http://review.couchbase.org and click on the Register link at the top right. Once you've signed in you will need to agree to the CLA (Contributor License Agreement) by going you your gerrit account page and selecting the Agreements link on the left. When you've done that, everything should flow through just fine. Be sure that you have registered your email address at http://review.couchbase.org/#/settings/contact as many sign-up methods won't pass emails along. Note that your email address in your code commit and in the gerrit settings must match.

Add your public SSH key to gerrit before submitting.

Setting up your fork with Gerrit

Assuming you have a repository created like so:

$ git clone https://github.com/couchbase/libcouchbase.git

you can simply perform two simple steps to get started with gerrit:

$ git remote add gerrit ssh://${USERNAME}@review.couchbase.org:29418/libcouchbase
$ scp -P 29418 ${USERNAME}@review.couchbase.org:hooks/commit-msg .git/hooks
$ chmod a+x .git/hooks/commit-msg

The last change is required for annotating each commit message with a special header known as Change-Id. This allows Gerrit to group together different revisions of the same patch.

Pushing a changeset

Now that you have your change and a gerrit account to push to, you need to upload the change for review. To do so, invoke the following incantation:

$ git push gerrit HEAD:refs/for/master

Where gerrit is the name of the remote added earlier. You may encounter some errors when pushing. The most common are:

  • "You are not authorized to push to this repository". You will get this if your account has not yet been approved. Feel free to ask about in gitter.im/couchbase or in the forums for help if blocked.
  • "Missing Change-Id". You need to install the commit-msg hook as described above. Note that even once you do this, you will need to ensure that any prior commits already have this header - this may be done by doing an interactive rebase (e.g. git rebase -i origin/master and selecting reword for all the commits; which will automatically fill in the Change-Id).

Once you've pushed your changeset you can add people to review. Currently these are:

  • Sergey Avseyev
  • Brett Lawson
  • Ellis Breen