Fix git checkout command in CONTRIBUTING.rst

This commit is contained in:
Bruno Oliveira 2015-09-22 10:54:37 -03:00
parent bf9b94595c
commit 5acbd7bc86
1 changed files with 2 additions and 2 deletions

View File

@ -153,11 +153,11 @@ but here is a simple overview:
$ cd pytest
# now, to fix a bug create your own branch off "master":
$ git checkout master -b your-bugfix-branch-name
$ git checkout -b your-bugfix-branch-name master
# or to instead add a feature create your own branch off "features":
$ git checkout features -b your-feature-branch-name
$ git checkout -b your-feature-branch-name features
Given we have "major.minor.micro" version numbers, bugfixes will usually
be released in micro releases whereas features will be released in