1GIT-FEATURE(1)                    Git Extras                    GIT-FEATURE(1)
2
3
4

NAME

6       git-feature - Create/Merge feature branch
7

SYNOPSIS

9       git-feature   [-a|--alias  branch_prefix]  [-r|--remote  [remote_name]]
10       [finish] <name>
11

DESCRIPTION

13       Create/Merge the given feature branch
14

OPTIONS

16       <-a|--alias branch_prefix>
17
18       use branch_prefix instead of feature
19
20       <-r|--remote [remote_name]>
21
22       Setup a remote tracking branch using remote_name. If remote_name is not
23       supplied, use origin by default.
24
25       <finish>
26
27       Merge and delete the feature branch.
28
29       <name>
30
31       The name of the feature branch.
32

EXAMPLES

34       $ git feature dependencies
35       $ (feature/dependencies) git commit -m "Some changes"
36       $ (feature/dependencies) git checkout master
37       $ git feature finish dependencies
38
39       $ git alias features "feature -a features"
40       $ git features dependencies
41       $ (features/dependencies) ...
42       $ (features/dependencies) git checkout master
43       $ git features finish dependencies
44
45       $ git feature dependencies -r upstream
46

AUTHOR

48       Written by Jesús Espino <jespinog@gmail.com>
49       Modified by Mark Pitman <mark.pitman@gmail.com>
50

REPORTING BUGS

52       <https://github.com/tj/git-extras/issues>
53

SEE ALSO

55       <https://github.com/tj/git-extras>
56
57
58
59                                 October 2017                   GIT-FEATURE(1)
Impressum