mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
71 lines
1.4 KiB
Groff
71 lines
1.4 KiB
Groff
.\" generated with Ronn/v0.7.3
|
|
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
|
.
|
|
.TH "GIT\-FEATURE" "1" "July 2017" "" ""
|
|
.
|
|
.SH "NAME"
|
|
\fBgit\-feature\fR \- Create/Merge feature branch
|
|
.
|
|
.SH "SYNOPSIS"
|
|
\fBgit\-feature\fR [\-a|\-\-alias branch_prefix] [\-r|\-\-remote [remote_name]] [finish] <name>
|
|
.
|
|
.SH "DESCRIPTION"
|
|
Create/Merge the given feature branch
|
|
.
|
|
.SH "OPTIONS"
|
|
<\-a|\-\-alias branch_prefix>
|
|
.
|
|
.P
|
|
use \fBbranch_prefix\fR instead of \fBfeature\fR
|
|
.
|
|
.P
|
|
<\-r|\-\-remote [remote_name]>
|
|
.
|
|
.P
|
|
Setup a remote tracking branch using \fBremote_name\fR\. If \fBremote_name\fR is not supplied, use \fBorigin\fR by default\.
|
|
.
|
|
.P
|
|
<finish>
|
|
.
|
|
.P
|
|
Merge and delete the feature branch\.
|
|
.
|
|
.P
|
|
<name>
|
|
.
|
|
.P
|
|
The name of the feature branch\.
|
|
.
|
|
.SH "EXAMPLES"
|
|
.
|
|
.nf
|
|
|
|
$ 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
|
|
.
|
|
.fi
|
|
.
|
|
.SH "AUTHOR"
|
|
Written by Jesús Espino <\fIjespinog@gmail\.com\fR>
|
|
.
|
|
.br
|
|
Modified by Mark Pitman <\fImark\.pitman@gmail\.com\fR>
|
|
.
|
|
.SH "REPORTING BUGS"
|
|
<\fIhttps://github\.com/tj/git\-extras/issues\fR>
|
|
.
|
|
.SH "SEE ALSO"
|
|
<\fIhttps://github\.com/tj/git\-extras\fR>
|