git-feature (1) Linux Manual Page
git-feature – Create/Merge feature branch
Synopsis
git-feature [-a|–alias branch_prefix] [finish] <name>Description
Create/Merge the given feature branchOptions
<-a|–alias branch_prefix>use branch_prefix instead of feature
<finish>
Merge and delete the feature branch.
<name>
The name of the feature branch.
Examples
$ git feature dependencies
…
$ (feature/dependencies) git commit -m "Some changes"
…
$ (feature/dependencies) git checkout master
$ git feature finish dependencies
$ git alias features "feature -a features"
$ git features dependencies
$ (features/dependencies) …
$ (features/dependencies) git checkout master
$ git features finish dependencies
