Jump to: navigation, search

Difference between revisions of "Neutron/FeatureBranch"

(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...")
 
(No difference)

Latest revision as of 04:02, 25 September 2014

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.