Adding bug/refactor/feature man pages

This commit is contained in:
Jesús Espino 2012-06-26 10:59:39 +02:00
parent 479bdce215
commit 175b432eba
3 changed files with 123 additions and 0 deletions

41
man/git-bug.md Normal file
View 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 &lt;<jespinog@gmail.com>&gt;
## REPORTING BUGS
&lt;<http://github.com/visionmedia/git-extras/issues>&gt;
## SEE ALSO
&lt;<http://github.com/visionmedia/git-extras>&gt;

41
man/git-feature.md Normal file
View file

@ -0,0 +1,41 @@
git-feature(1) -- Create feature branch
=======================================
## SYNOPSIS
`git-feature` [finish] &lt;name&gt;
## DESCRIPTION
Create the given feature branch
## OPTIONS
&lt;finish&gt;
Merge and delete the feature branch.
&lt;name&gt;
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 &lt;<jespinog@gmail.com>&gt;
## REPORTING BUGS
&lt;<http://github.com/visionmedia/git-extras/issues>&gt;
## SEE ALSO
&lt;<http://github.com/visionmedia/git-extras>&gt;

41
man/git-refactor.md Normal file
View file

@ -0,0 +1,41 @@
git-refactor(1) -- Create refactor branch
=========================================
## SYNOPSIS
`git-refactor` [finish] &lt;name&gt;
## DESCRIPTION
Create the given refactor branch
## OPTIONS
&lt;finish&gt;
Merge and delete the refactor branch.
&lt;name&gt;
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 &lt;<jespinog@gmail.com>&gt;
## REPORTING BUGS
&lt;<http://github.com/visionmedia/git-extras/issues>&gt;
## SEE ALSO
&lt;<http://github.com/visionmedia/git-extras>&gt;