docbrown/docs/getting-started/branching.md
Andrew Brown 30dcb23169 #2507 - refactor GitDocs documentation (#2595)
* #2507 - refactor GitDocs documentation

* #2507 - fix grammar and spelling errors
2019-04-29 10:08:22 -04:00

17 lines
353 B
Markdown

---
title: Creating a Feature Branch
---
# Creating a Feature / Bug Branch
When you are working on a bug, feature or improvement, you will need to create a branch. For features or improvement you will create a branch as follows:
```
git checkout -b feature/that-new-feature`
```
For a bug branch you will do as follows:
```
bug/fixing-that-bug
```