mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
Adding bug/refactor/feature man pages
This commit is contained in:
parent
479bdce215
commit
175b432eba
41
man/git-bug.md
Normal file
41
man/git-bug.md
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
git-bug(1) -- Create bug branch
|
||||
===============================
|
||||
|
||||
## SYNOPSIS
|
||||
|
||||
`git-bug` [finish] <name>
|
||||
|
||||
## DESCRIPTION
|
||||
|
||||
Create the given bug branch
|
||||
|
||||
## OPTIONS
|
||||
|
||||
<finish>
|
||||
|
||||
Merge and delete the bug branch.
|
||||
|
||||
<name>
|
||||
|
||||
The name of the bug branch.
|
||||
|
||||
## EXAMPLES
|
||||
|
||||
$ git bug bug-123456
|
||||
...
|
||||
$ git commit -m "Some changes"
|
||||
...
|
||||
$ git checkout master
|
||||
$ git bug finish bug-123456
|
||||
|
||||
## AUTHOR
|
||||
|
||||
Written by Jesús Espino <<jespinog@gmail.com>>
|
||||
|
||||
## REPORTING BUGS
|
||||
|
||||
<<http://github.com/visionmedia/git-extras/issues>>
|
||||
|
||||
## SEE ALSO
|
||||
|
||||
<<http://github.com/visionmedia/git-extras>>
|
||||
41
man/git-feature.md
Normal file
41
man/git-feature.md
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
git-feature(1) -- Create feature branch
|
||||
=======================================
|
||||
|
||||
## SYNOPSIS
|
||||
|
||||
`git-feature` [finish] <name>
|
||||
|
||||
## DESCRIPTION
|
||||
|
||||
Create the given feature branch
|
||||
|
||||
## OPTIONS
|
||||
|
||||
<finish>
|
||||
|
||||
Merge and delete the feature branch.
|
||||
|
||||
<name>
|
||||
|
||||
The name of the feature branch.
|
||||
|
||||
## EXAMPLES
|
||||
|
||||
$ git feature dependencies
|
||||
...
|
||||
$ git commit -m "Some changes"
|
||||
...
|
||||
$ git checkout master
|
||||
$ git feature finish dependencies
|
||||
|
||||
## AUTHOR
|
||||
|
||||
Written by Jesús Espino <<jespinog@gmail.com>>
|
||||
|
||||
## REPORTING BUGS
|
||||
|
||||
<<http://github.com/visionmedia/git-extras/issues>>
|
||||
|
||||
## SEE ALSO
|
||||
|
||||
<<http://github.com/visionmedia/git-extras>>
|
||||
41
man/git-refactor.md
Normal file
41
man/git-refactor.md
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
git-refactor(1) -- Create refactor branch
|
||||
=========================================
|
||||
|
||||
## SYNOPSIS
|
||||
|
||||
`git-refactor` [finish] <name>
|
||||
|
||||
## DESCRIPTION
|
||||
|
||||
Create the given refactor branch
|
||||
|
||||
## OPTIONS
|
||||
|
||||
<finish>
|
||||
|
||||
Merge and delete the refactor branch.
|
||||
|
||||
<name>
|
||||
|
||||
The name of the refactor branch.
|
||||
|
||||
## EXAMPLES
|
||||
|
||||
$ git refactor mainlib_refactor
|
||||
...
|
||||
$ git commit -m "Some changes"
|
||||
...
|
||||
$ git checkout master
|
||||
$ git refactor finish mainlib_refactor
|
||||
|
||||
## AUTHOR
|
||||
|
||||
Written by Jesús Espino <<jespinog@gmail.com>>
|
||||
|
||||
## REPORTING BUGS
|
||||
|
||||
<<http://github.com/visionmedia/git-extras/issues>>
|
||||
|
||||
## SEE ALSO
|
||||
|
||||
<<http://github.com/visionmedia/git-extras>>
|
||||
Loading…
Reference in a new issue