forked from tj/git-extras
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
638 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
git-changelog(1) -- Generate the changelog report | ||
================================================= | ||
|
||
## SYNOPSIS | ||
|
||
`git-changelog` [--list] | ||
|
||
## DESCRIPTION | ||
|
||
Populates the file named matching _change|history -i_ with the commits since the previous tag or since the project began when no tags are present. Opens the changelog in **$EDITOR** when set. | ||
|
||
## OPTIONS | ||
|
||
--list | ||
|
||
Show commit logs from the current version. | ||
|
||
## EXAMPLES | ||
|
||
* Updating changelog file: | ||
|
||
$ git changelog | ||
|
||
* Listing commits from the current version: | ||
|
||
$ git changelog --list | ||
|
||
* Docs for git-ignore. Closes #3 | ||
* Merge branch 'ignore' | ||
* Added git-ignore | ||
* Fixed <tag> in docs | ||
* Install docs | ||
* Merge branch 'release' | ||
* Added git-release | ||
* Passing args to git shortlog | ||
* Added --all support to git-count | ||
* Initial commit | ||
|
||
## AUTHOR | ||
|
||
Written by Tj Holowaychuk <<[email protected]>> | ||
|
||
## REPORTING BUGS | ||
|
||
<<http://github.com/visionmedia/git-extras/issues>> | ||
|
||
## SEE ALSO | ||
|
||
<<http://github.com/visionmedia/git-extras>> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
git-commits-since(1) -- Show commit logs since some date | ||
======================================================== | ||
|
||
## SYNOPSIS | ||
|
||
`git-commits-since` [<date>] | ||
|
||
## DESCRIPTION | ||
|
||
List of commits since the given _date_. | ||
|
||
## OPTIONS | ||
|
||
<date> | ||
|
||
Show commits more recent than <date>. By default, the command shows the commit logs since "last week". | ||
|
||
## EXAMPLES | ||
|
||
## AUTHOR | ||
|
||
Written by Tj Holowaychuk <<[email protected]>> | ||
|
||
## REPORTING BUGS | ||
|
||
<<http://github.com/visionmedia/git-extras/issues>> | ||
|
||
## SEE ALSO | ||
|
||
<<http://github.com/visionmedia/git-extras>> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
git-contrib(1) -- Show user's contributions | ||
=========================================== | ||
|
||
## SYNOPSIS | ||
|
||
`git-contrib` <username> | ||
|
||
## DESCRIPTION | ||
|
||
Output a user's contributions to a project, based on the author name. | ||
|
||
## OPTIONS | ||
|
||
<username> | ||
|
||
The name of the user who owns the contributions. | ||
|
||
## EXAMPLES | ||
|
||
$ git contrib visionmedia | ||
visionmedia (18): | ||
Export STATUS_CODES | ||
Replaced several Array.prototype.slice.call() calls with Array.prototype.unshift.call() | ||
Moved help msg to node-repl | ||
Added multiple arg support for sys.puts(), print(), etc. | ||
Fix stack output on socket error | ||
... | ||
|
||
## AUTHOR | ||
|
||
Written by Tj Holowaychuk <<[email protected]>> | ||
|
||
## REPORTING BUGS | ||
|
||
<<http://github.com/visionmedia/git-extras/issues>> | ||
|
||
## SEE ALSO | ||
|
||
<<http://github.com/visionmedia/git-extras>> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
git-count(1) -- Show commit count | ||
================================= | ||
|
||
## SYNOPSIS | ||
|
||
`git-count` [--all] | ||
|
||
## DESCRIPTION | ||
|
||
Show commit count. | ||
|
||
## OPTIONS | ||
|
||
--all | ||
|
||
Show commit count details. | ||
|
||
## EXAMPLES | ||
|
||
|
||
Output commit total: | ||
|
||
$ git count | ||
|
||
total 1844 | ||
|
||
Output verbose commit count details: | ||
|
||
$ git count --all | ||
|
||
visionmedia (1285) | ||
Tj Holowaychuk (430) | ||
Aaron Heckmann (48) | ||
csausdev (34) | ||
ciaranj (26) | ||
Guillermo Rauch (6) | ||
Brian McKinney (2) | ||
Nick Poulden (2) | ||
Benny Wong (2) | ||
Justin Lilly (1) | ||
isaacs (1) | ||
Adam Sanderson (1) | ||
Viktor Kelemen (1) | ||
Gregory Ritter (1) | ||
Greg Ritter (1) | ||
ewoudj (1) | ||
James Herdman (1) | ||
Matt Colyer (1) | ||
|
||
total 1844 | ||
|
||
## AUTHOR | ||
|
||
Written by Tj Holowaychuk <<[email protected]>> | ||
|
||
## REPORTING BUGS | ||
|
||
<<http://github.com/visionmedia/git-extras/issues>> | ||
|
||
## SEE ALSO | ||
|
||
<<http://github.com/visionmedia/git-extras>> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
git-delete-branch(1) -- Delete branches | ||
======================================= | ||
|
||
## SYNOPSIS | ||
|
||
`git-delete-branch` <branchname> | ||
|
||
## DESCRIPTION | ||
|
||
Deletes local and remote branch named <branchname>. | ||
|
||
## OPTIONS | ||
|
||
<branchname> | ||
|
||
The name of the branch to delete. | ||
|
||
## EXAMPLES | ||
|
||
$ git delete-branch integration | ||
|
||
## AUTHOR | ||
|
||
Written by Tj Holowaychuk <<[email protected]>> | ||
|
||
## REPORTING BUGS | ||
|
||
<<http://github.com/visionmedia/git-extras/issues>> | ||
|
||
## SEE ALSO | ||
|
||
<<http://github.com/visionmedia/git-extras>> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
git-delete-submodule(1) -- Delete submodules | ||
============================================ | ||
|
||
## SYNOPSIS | ||
|
||
`git-delete-submodule` <path> | ||
|
||
## DESCRIPTION | ||
|
||
## OPTIONS | ||
|
||
<path> | ||
|
||
The path of the submodule to delete. | ||
|
||
## EXAMPLES | ||
|
||
$ git delete-submodule lib/foo | ||
|
||
## AUTHOR | ||
|
||
Written by Jonhnny Weslley <<[email protected]>> | ||
|
||
## REPORTING BUGS | ||
|
||
<<http://github.com/visionmedia/git-extras/issues>> | ||
|
||
## SEE ALSO | ||
|
||
<<http://github.com/visionmedia/git-extras>> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
git-delete-tag(1) -- Delete tags | ||
================================ | ||
|
||
## SYNOPSIS | ||
|
||
`git-delete-tag` <tagname> | ||
|
||
## DESCRIPTION | ||
|
||
Deletes local and remote tag named <tagname>. | ||
|
||
## OPTIONS | ||
|
||
<tagname> | ||
|
||
The name of the branch to delete. | ||
|
||
## EXAMPLES | ||
|
||
$ git delete-tag 0.0.1 | ||
|
||
## AUTHOR | ||
|
||
Written by Tj Holowaychuk <<[email protected]>> | ||
|
||
## REPORTING BUGS | ||
|
||
<<http://github.com/visionmedia/git-extras/issues>> | ||
|
||
## SEE ALSO | ||
|
||
<<http://github.com/visionmedia/git-extras>> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
git-fresh-branch(1) -- Create fresh branches | ||
============================================ | ||
|
||
## SYNOPSIS | ||
|
||
`git-fresh-branch` <branchname> | ||
|
||
## DESCRIPTION | ||
|
||
Creates empty local branch named <branchname>. | ||
|
||
## OPTIONS | ||
|
||
<branchname> | ||
|
||
The name of the branch to delete. | ||
|
||
## EXAMPLES | ||
|
||
$ git fresh-branch docs | ||
|
||
## AUTHOR | ||
|
||
Written by Kenneth Reitz <<[email protected]>> | ||
|
||
## REPORTING BUGS | ||
|
||
<<http://github.com/visionmedia/git-extras/issues>> | ||
|
||
## SEE ALSO | ||
|
||
<<http://github.com/visionmedia/git-extras>> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
git-graft(1) -- Merge commits together | ||
====================================== | ||
|
||
## SYNOPSIS | ||
|
||
`git-graft` <src-branch> [<dest-branch>] | ||
|
||
## DESCRIPTION | ||
|
||
Merge commits from <src-branch> into <dest-branch> which defaults to <master>. | ||
|
||
## OPTIONS | ||
|
||
<src-branch> | ||
|
||
<dest-branch> | ||
|
||
## EXAMPLES | ||
|
||
$ git graft new_feature dev | ||
$ git graft new_feature | ||
|
||
## AUTHOR | ||
|
||
Written by Kenneth Reitz <<[email protected]>> | ||
|
||
## REPORTING BUGS | ||
|
||
<<http://github.com/visionmedia/git-extras/issues>> | ||
|
||
## SEE ALSO | ||
|
||
<<http://github.com/visionmedia/git-extras>> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
git-ignore(1) -- Ignore untracked files | ||
======================================= | ||
|
||
## SYNOPSIS | ||
|
||
`git-ignore` [<pattern>...] | ||
|
||
## DESCRIPTION | ||
|
||
Adds the given _pattern_s to a gitignore file. | ||
|
||
## OPTIONS | ||
|
||
## EXAMPLES | ||
|
||
To lazy to open up _.gitignore_? me too! simply pass some patterns: | ||
|
||
$ git ignore build "*.o" "*.log" | ||
... added 'build' | ||
... added '*.o' | ||
... added '*.log' | ||
|
||
Running `git-ignore` without a pattern will display the current patterns: | ||
|
||
$ git ignore | ||
build | ||
*.o | ||
*.log | ||
|
||
## AUTHOR | ||
|
||
Written by Tj Holowaychuk <<[email protected]>> | ||
|
||
## REPORTING BUGS | ||
|
||
<<http://github.com/visionmedia/git-extras/issues>> | ||
|
||
## SEE ALSO | ||
|
||
<<http://github.com/visionmedia/git-extras>> |
Oops, something went wrong.