2005-07-15 02:55:09 +02:00
|
|
|
git-var(1)
|
2005-07-15 23:57:09 +02:00
|
|
|
==========
|
2005-07-15 02:55:09 +02:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 00:53:37 +01:00
|
|
|
git-var - Show a git logical variable
|
2005-07-15 02:55:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2006-03-06 01:00:48 +01:00
|
|
|
'git-var' [ -l | <variable> ]
|
2005-07-15 02:55:09 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
Prints a git logical variable.
|
|
|
|
|
2005-10-03 19:16:30 +02:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
-l::
|
2006-04-25 00:59:28 +02:00
|
|
|
Cause the logical variables to be listed. In addition, all the
|
|
|
|
variables of the git configuration file .git/config are listed
|
2006-04-25 00:59:30 +02:00
|
|
|
as well. (However, the configuration variables listing functionality
|
2007-01-29 01:16:53 +01:00
|
|
|
is deprecated in favor of `git-config -l`.)
|
2005-07-15 02:55:09 +02:00
|
|
|
|
|
|
|
EXAMPLE
|
|
|
|
--------
|
2005-10-03 19:16:30 +02:00
|
|
|
$ git-var GIT_AUTHOR_IDENT
|
|
|
|
Eric W. Biederman <ebiederm@lnxi.com> 1121223278 -0600
|
2005-07-15 02:55:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
VARIABLES
|
|
|
|
----------
|
2005-10-03 19:16:30 +02:00
|
|
|
GIT_AUTHOR_IDENT::
|
2005-07-15 02:55:09 +02:00
|
|
|
The author of a piece of code.
|
|
|
|
|
2005-10-03 19:16:30 +02:00
|
|
|
GIT_COMMITTER_IDENT::
|
2005-07-15 02:55:09 +02:00
|
|
|
The person who put a piece of code into git.
|
|
|
|
|
|
|
|
Diagnostics
|
|
|
|
-----------
|
|
|
|
You don't exist. Go away!::
|
|
|
|
The passwd(5) gecos field couldn't be read
|
|
|
|
Your parents must have hated you!::
|
|
|
|
The password(5) gecos field is longer than a giant static buffer.
|
|
|
|
Your sysadmin must hate you!::
|
|
|
|
The password(5) name field is longer than a giant static buffer.
|
|
|
|
|
|
|
|
See Also
|
|
|
|
--------
|
2005-09-19 12:10:51 +02:00
|
|
|
gitlink:git-commit-tree[1]
|
|
|
|
gitlink:git-tag[1]
|
2007-01-29 01:16:53 +01:00
|
|
|
gitlink:git-config[1]
|
2005-07-15 02:55:09 +02:00
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Eric Biederman <ebiederm@xmission.com>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Eric Biederman and the git-list <git@vger.kernel.org>.
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 12:10:51 +02:00
|
|
|
Part of the gitlink:git[7] suite
|