diff --git a/man/git-info.1 b/man/git-info.1 new file mode 100644 index 0000000..e9415c6 --- /dev/null +++ b/man/git-info.1 @@ -0,0 +1,94 @@ +.\" generated with Ronn/v0.7.3 +.\" http://github.com/rtomayko/ronn/tree/0.7.3 +. +.TH "GIT\-INFO" "1" "June 2012" "" "" +. +.SH "NAME" +\fBgit\-info\fR \- Returns information on current respository +. +.SH "SYNOPSIS" +\fBgit\-info\fR +. +.SH "DESCRIPTION" +Shows the following information about a repository: +. +.br +1\. Remote Url(s) +. +.br +2\. Remote Branches +. +.br +3\. Local Branches +. +.br +4\. Most recent commit +. +.br +5\. Configuration Info +. +.SH "OPTIONS" +N/A +. +.SH "EXAMPLES" +Outputs info about a repo: +. +.IP "" 4 +. +.nf + +$ git info + +## Remote URLs: + +origin git@github\.com:sampleAuthor/git\-extras\.git (fetch) +origin git@github\.com:sampleAuthor/git\-extras\.git (push) + +## Remote Branches: + +origin/HEAD \-> origin/master +origin/myBranch + +## Local Branches: + +myBranch +* master + +## Most Recent Commit: + +commit e3952df2c172c6f3eb533d8d0b1a6c77250769a7 +Author: Sample Author + +Added git\-info command\. + +Type \'git log\' for more commits, or \'git show \' for full commit details\. + +## Configuration (\.git/config): + +color\.diff=auto +color\.status=auto +color\.branch=auto +user\.name=Sample Author +user\.email=sampleAuthor@gmail\.com +core\.repositoryformatversion=0 +core\.filemode=true +core\.bare=false +core\.logallrefupdates=true +core\.ignorecase=true +remote\.origin\.fetch=+refs/heads/*:refs/remotes/origin/* +remote\.origin\.url=git@github\.com:mub/git\-extras\.git +branch\.master\.remote=origin +branch\.master\.merge=refs/heads/master +. +.fi +. +.IP "" 0 +. +.SH "AUTHOR" +Written by Leila Muhtasib <\fImuhtasib@gmail\.com\fR> +. +.SH "REPORTING BUGS" +<\fIhttp://github\.com/visionmedia/git\-extras/issues\fR> +. +.SH "SEE ALSO" +<\fIhttp://github\.com/visionmedia/git\-extras\fR> diff --git a/man/git-info.html b/man/git-info.html new file mode 100644 index 0000000..cbe8f2f --- /dev/null +++ b/man/git-info.html @@ -0,0 +1,163 @@ + + + + + + git-info(1) - Returns information on current respository + + + + +
+ + + +
    +
  1. git-info(1)
  2. +
  3. +
  4. git-info(1)
  5. +
+ +

NAME

+

+ git-info - Returns information on current respository +

+ +

SYNOPSIS

+ +

git-info

+ +

DESCRIPTION

+ +

Shows the following information about a repository:
+1. Remote Url(s)
+2. Remote Branches
+3. Local Branches
+4. Most recent commit
+5. Configuration Info

+ +

OPTIONS

+ +

N/A

+ +

EXAMPLES

+ +

Outputs info about a repo:

+ +
$ git info
+
+## Remote URLs:
+
+origin      git@github.com:sampleAuthor/git-extras.git (fetch)
+origin      git@github.com:sampleAuthor/git-extras.git (push)
+
+## Remote Branches:
+
+origin/HEAD -> origin/master
+origin/myBranch
+
+## Local Branches:
+
+myBranch
+* master
+
+## Most Recent Commit:
+
+commit e3952df2c172c6f3eb533d8d0b1a6c77250769a7
+Author: Sample Author <sampleAuthor@gmail.com>
+
+Added git-info command.
+
+Type 'git log' for more commits, or 'git show <commit id>' for full commit details.
+
+## Configuration (.git/config):
+
+color.diff=auto
+color.status=auto
+color.branch=auto
+user.name=Sample Author
+user.email=sampleAuthor@gmail.com
+core.repositoryformatversion=0
+core.filemode=true
+core.bare=false
+core.logallrefupdates=true
+core.ignorecase=true
+remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
+remote.origin.url=git@github.com:mub/git-extras.git
+branch.master.remote=origin
+branch.master.merge=refs/heads/master
+
+ +

AUTHOR

+ +

Written by Leila Muhtasib <muhtasib@gmail.com>

+ +

REPORTING BUGS

+ +

<http://github.com/visionmedia/git-extras/issues>

+ +

SEE ALSO

+ +

<http://github.com/visionmedia/git-extras>

+ + +
    +
  1. +
  2. June 2012
  3. +
  4. git-info(1)
  5. +
+ +
+ + diff --git a/man/git-info.md b/man/git-info.md new file mode 100644 index 0000000..a7e1ba7 --- /dev/null +++ b/man/git-info.md @@ -0,0 +1,79 @@ +git-info(1) -- Returns information on current respository +================================ + +## SYNOPSIS + +`git-info` + +## DESCRIPTION + +Shows the following information about a repository: +1. Remote Url(s) +2. Remote Branches +3. Local Branches +4. Most recent commit +5. Configuration Info + +## OPTIONS + +N/A + +## EXAMPLES + +Outputs info about a repo: + + $ git info + + ## Remote URLs: + + origin git@github.com:sampleAuthor/git-extras.git (fetch) + origin git@github.com:sampleAuthor/git-extras.git (push) + + ## Remote Branches: + + origin/HEAD -> origin/master + origin/myBranch + + ## Local Branches: + + myBranch + * master + + ## Most Recent Commit: + + commit e3952df2c172c6f3eb533d8d0b1a6c77250769a7 + Author: Sample Author + + Added git-info command. + + Type 'git log' for more commits, or 'git show ' for full commit details. + + ## Configuration (.git/config): + + color.diff=auto + color.status=auto + color.branch=auto + user.name=Sample Author + user.email=sampleAuthor@gmail.com + core.repositoryformatversion=0 + core.filemode=true + core.bare=false + core.logallrefupdates=true + core.ignorecase=true + remote.origin.fetch=+refs/heads/*:refs/remotes/origin/* + remote.origin.url=git@github.com:mub/git-extras.git + branch.master.remote=origin + branch.master.merge=refs/heads/master + + +## AUTHOR + +Written by Leila Muhtasib <> + +## REPORTING BUGS + +<> + +## SEE ALSO + +<>