Skip to content

Latest commit

 

History

History
97 lines (57 loc) · 5.08 KB

CONTRIBUTING.md

File metadata and controls

97 lines (57 loc) · 5.08 KB

Contributing

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

For something to be accepted into the codebase, it must be formatted properly and have undergone proper testing.

Branches and Tags

  • The master branch represents the mainline branch. The master branch typically consists of content going into the next release.
  • For older series of the Couchbase Node.js SDK see the corresponding branches: 2.x = v2 and 3.x = v3.

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.

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/couchnode.git

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

$ git remote add gerrit ssh://${USERNAME}@review.couchbase.org:29418/couchnode
$ 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.

Pushing a new patchset

After a change has been pushed to Gerrit, further revisions can be made and then uploaded. These revisions are called patchsets and are associated with the the Change-Id created from the initial commit (see above). To push a new revision, simply ammend the commit (can also add the --no-edit option if no edits to the commit message are needed):

$ git commit --amend

Then push the revision to Gerrit:

$ git push gerrit HEAD:refs/for/master

Where gerrit is the name of the remote added earlier.

Troubleshooting

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. Please reach out in the forums 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).

Reviewers

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

  • Jared Casey
  • Matt Wozakowski
  • Brett Lawson