2005-07-15 00:55:09 +00:00
|
|
|
git-var(1)
|
2005-07-15 21:57:09 +00:00
|
|
|
==========
|
2005-07-15 00:55:09 +00:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-18 23:53:37 +00:00
|
|
|
git-var - Show a git logical variable
|
2005-07-15 00:55:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2008-06-30 06:09:04 +00:00
|
|
|
'git var' [ -l | <variable> ]
|
2005-07-15 00:55:09 +00:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
Prints a git logical variable.
|
|
|
|
|
2005-10-03 17:16:30 +00:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
-l::
|
2006-04-24 22:59:28 +00:00
|
|
|
Cause the logical variables to be listed. In addition, all the
|
|
|
|
variables of the git configuration file .git/config are listed
|
2006-04-24 22:59:30 +00:00
|
|
|
as well. (However, the configuration variables listing functionality
|
2010-01-07 16:49:12 +00:00
|
|
|
is deprecated in favor of `git config -l`.)
|
2005-07-15 00:55:09 +00:00
|
|
|
|
|
|
|
EXAMPLE
|
|
|
|
--------
|
2008-06-30 06:09:04 +00:00
|
|
|
$ git var GIT_AUTHOR_IDENT
|
2005-10-03 17:16:30 +00:00
|
|
|
Eric W. Biederman <ebiederm@lnxi.com> 1121223278 -0600
|
2005-07-15 00:55:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
VARIABLES
|
|
|
|
----------
|
2005-10-03 17:16:30 +00:00
|
|
|
GIT_AUTHOR_IDENT::
|
2005-07-15 00:55:09 +00:00
|
|
|
The author of a piece of code.
|
|
|
|
|
2005-10-03 17:16:30 +00:00
|
|
|
GIT_COMMITTER_IDENT::
|
2005-07-15 00:55:09 +00:00
|
|
|
The person who put a piece of code into git.
|
|
|
|
|
2009-11-12 00:01:27 +00:00
|
|
|
GIT_EDITOR::
|
|
|
|
Text editor for use by git commands. The value is meant to be
|
|
|
|
interpreted by the shell when it is used. Examples: `~/bin/vi`,
|
|
|
|
`$SOME_ENVIRONMENT_VARIABLE`, `"C:\Program Files\Vim\gvim.exe"
|
|
|
|
--nofork`. The order of preference is the `$GIT_EDITOR`
|
|
|
|
environment variable, then `core.editor` configuration, then
|
|
|
|
`$VISUAL`, then `$EDITOR`, and then finally 'vi'.
|
|
|
|
|
2009-10-31 01:41:27 +00:00
|
|
|
GIT_PAGER::
|
|
|
|
Text viewer for use by git commands (e.g., 'less'). The value
|
|
|
|
is meant to be interpreted by the shell. The order of preference
|
|
|
|
is the `$GIT_PAGER` environment variable, then `core.pager`
|
|
|
|
configuration, then `$PAGER`, and then finally 'less'.
|
|
|
|
|
2005-07-15 00:55:09 +00:00
|
|
|
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 08:50:43 +00:00
|
|
|
The passwd(5) gecos field is longer than a giant static buffer.
|
2005-07-15 00:55:09 +00:00
|
|
|
Your sysadmin must hate you!::
|
2008-09-03 08:50:43 +00:00
|
|
|
The passwd(5) name field is longer than a giant static buffer.
|
2005-07-15 00:55:09 +00:00
|
|
|
|
2008-05-28 23:55:27 +00:00
|
|
|
SEE ALSO
|
2005-07-15 00:55:09 +00:00
|
|
|
--------
|
2007-12-29 06:20:38 +00:00
|
|
|
linkgit:git-commit-tree[1]
|
|
|
|
linkgit:git-tag[1]
|
|
|
|
linkgit:git-config[1]
|
2005-07-15 00:55:09 +00: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 07:07:32 +00:00
|
|
|
Part of the linkgit:git[1] suite
|