Heya,
On Sun, May 16, 2010 at 04:14, Geert Bosch [off-list ref] wrote:
What git seems to be missing is a "git info" command, which
would print out essentially something like what "svn info" does:
name of remote repo that we're tracking, name of current branch,
date/author/subject of last commit.
You can get information about the remote with:
$ git remote -v
And then for the branch etc you can do (although it doesn't list the author):
$ git branch -v
--
Cheers,
Sverre Rabbelier