1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
git-feature(1) -- Create/Merge feature branch
=======================================
## SYNOPSIS
`git-feature` [-a|--alias branch_prefix] [finish] <name>
## DESCRIPTION
Create/Merge the given feature branch
## OPTIONS
<-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
## AUTHOR
Written by Jesus Espino <<jespinog@gmail.com>>
## REPORTING BUGS
<<https://github.com/tj/git-extras/issues>>
## SEE ALSO
<<https://github.com/tj/git-extras>>
|