GIT-FEATURE(1) | Git Extras | GIT-FEATURE(1) |
git-feature - Create/Merge feature branch
git-feature [-a|--alias branch_prefix] [-r|--remote [remote_name]] [finish] <name>
Create/Merge the given feature branch
<-a|--alias branch_prefix>
use branch_prefix instead of feature
<-r|--remote [remote_name]>
Setup a remote tracking branch using remote_name. If remote_name is not supplied, use origin by default.
<finish>
Merge and delete the feature branch.
<name>
The name of the feature branch.
$ 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 $ git feature dependencies -r upstream
Written by Jesus Espino <jespinog@gmail.com>
Modified by Mark Pitman <mark.pitman@gmail.com>
<https://github.com/tj/git-extras/issues>
<https://github.com/tj/git-extras>
September 2018 |