865
edits
| Line 16: | Line 16: | ||
= Getting some stuff Done= | = Getting some stuff Done= | ||
Let's say we're implementing a bug fix for 1.4.2, here are the steps you'll take: | Let's say we're implementing a bug fix for 1.4.2, here are the steps you'll take: | ||
* | * Make sure you're on your local 1.4.2 branch: | ||
<pre>git checkout | <pre>git checkout 1.4.2</pre> | ||
* Create another local branch off of | * Create another local branch off of your 1.4.2 branch to do your work in: | ||
<pre>git checkout -b mynewfeature</pre> | <pre>git checkout -b mynewfeature</pre> | ||
* Do your fix, then when you're ready submit the feature for review - push to your branch to your own repo: | * Do your fix, then when you're ready submit the feature for review - push to your branch to your own repo: | ||
edits