The readme seems to indicate that subsequent calls to git feature XYZ should check that branch out. It doesn't appear to be working for me... am I doing something wrong?
$
brandon at MacMini in ~/code/myapp on master
$ git feature myfeature
brandon at MacMini in ~/code/myapp on feature/myfeature
$ git checkout master
Switched to branch 'master'
brandon at MacMini in ~/code/myapp on master
$ git feature myfeature
brandon at MacMini in ~/code/myapp on master
$
I was expecting to be on branch feature/myfeature at the end there, but am on master.