All members of the organization that contribute code must follow these guidelines. These guidelines ensure that the organization produces high quality code with efficient collaboration.
The Blockchain at Berkeley organization is made up of many students working together on various blockchain related software products. All members of the organization that contribute code must follow these guidelines. These guidelines ensure that the organization produces high quality code with efficient collaboration.
This is a living document and we are open to ways we can improve. Feel free to create a GitHub issue with suggestions or make a pull request with contributions.
This guide should
We exclusively use git for our source control. To learn git, use https://try.github.io/
We use our GitHub organization BerkeleyBitcoin for all our public and private projects. To gain access to the GitHub organization, contact an officer in charge of this. Also know that not all projects are public for everyone to access. Each repository may have a custom list of who has access.
Commit messages should be detailed and be descriptive and follow a format
Examples:
Do not commit directly to the master branch. All contributions should be done via pull requests.
The master branch should be a protected branch (which can be set up by an adminstrator of the GitHub repository). A protected master branch would enforce this master branch.
When implementing a new feature, branch off where your feature is going to be merged into (usually the master branch). There are two places where the branch can live:
We care about the integrity of our code. We highly suggest contributors set up a GPG key and sign all their git commits with it. We recommend using these resources:
For code style, use what is most idiomatic in language being worked in. If there is disagreement, then default to the organization wide suggestion:
For all our open source projects, we should use the Apache 2.0 license.
This contribution guide itself is licensed under the Apache 2.0 license. Feel free to fork this and modify for your own use.