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
|
|
|
|
--------
|
2008-06-30 08:09:04 +02: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
|
2008-09-03 10:50:43 +02:00
|
|
|
is deprecated in favor of 'git config -l'.)
|
2005-07-15 02:55:09 +02:00
|
|
|
|
|
|
|
EXAMPLE
|
|
|
|
--------
|
2008-06-30 08:09:04 +02:00
|
|
|
$ git var GIT_AUTHOR_IDENT
|
2005-10-03 19:16:30 +02:00
|
|
|
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!::
|
2008-09-03 10:50:43 +02:00
|
|
|
The passwd(5) gecos field is longer than a giant static buffer.
|
2005-07-15 02:55:09 +02:00
|
|
|
Your sysadmin must hate you!::
|
2008-09-03 10:50:43 +02:00
|
|
|
The passwd(5) name field is longer than a giant static buffer.
|
2005-07-15 02:55:09 +02:00
|
|
|
|
2008-05-29 01:55:27 +02:00
|
|
|
SEE ALSO
|
2005-07-15 02:55:09 +02:00
|
|
|
--------
|
2007-12-29 07:20:38 +01:00
|
|
|
linkgit:git-commit-tree[1]
|
|
|
|
linkgit:git-tag[1]
|
|
|
|
linkgit: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
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|