create a new git branch from existing local branch code example
Example: createa. branch off of development git
//when on branch 'dev' make branch 'myFeature' off of 'dev'
git checkout -b myFeature dev
//when on branch 'dev' make branch 'myFeature' off of 'dev'
git checkout -b myFeature dev