Jump to: navigation, search

Neutron/FeatureBranch

< Neutron
Revision as of 04:02, 25 September 2014 by Dougwig (talk | contribs) (Created page with "== 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 ne...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.