Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 1.61 KB

CONTRIBUTING.md

File metadata and controls

38 lines (25 loc) · 1.61 KB

Contributing to Cloud Controller

The Cloud Foundry team uses GitHub and accepts contributions via pull request.

See the wiki for design notes and other helpful information.

Contributor License Agreement

Follow these steps to make a contribution to any of our open source repositories:

  1. Ensure that you have completed our CLA Agreement for individuals or corporations.

  2. Set your name and email (these should match the information on your submitted CLA)

     git config --global user.name "Firstname Lastname"
     git config --global user.email "[email protected]"
    

General Workflow

  1. Fork the repository
  2. Check out master of cloud_controller
  3. Create a feature branch (git checkout -b better_cloud_controller)
  4. Make changes on your branch
  5. Run tests
  6. Run static analysis
  7. If you are deploying to bosh, checkout develop of capi-release and develop of cf-release
  8. Push to your fork (git push origin better_cloud_controller) and submit a pull request

We favor pull requests with very small, single commits with a single purpose.

Your pull request is much more likely to be accepted if:

  • Your pull request includes tests

  • Your pull request is small and focused with a clear message that conveys the intent of your change