Jump to: navigation, search

Neutron/FeatureBranch

Using the branch

To use a Neutron feature branch, set your git repo to track the remote branch (do not pass -b to checkout, or you will create a local branch).

 cd neutron
 git checkout feature/lbaasv2

Check that the .gitreview file was set to correctly use this branch for gerrit:

 defaultbranch=feature/lbaasv2

Now use the branch as normal. Things to avoid:

  • Do not create a dependency to a review in master.

Things to do:

  • Definitely use topic branches, but create them off of the feature branch.