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
|
|
|
|
----
|
2013-01-21 20:17:53 +01:00
|
|
|
git-var - Show a Git logical variable
|
2005-07-15 02:55:09 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 04:38:26 +02:00
|
|
|
[verse]
|
2010-02-14 12:55:53 +01:00
|
|
|
'git var' ( -l | <variable> )
|
2005-07-15 02:55:09 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2013-01-21 20:17:53 +01:00
|
|
|
Prints a Git logical variable.
|
2005-07-15 02:55:09 +02:00
|
|
|
|
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
|
2013-01-21 20:17:53 +01:00
|
|
|
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
|
2010-01-07 17:49:12 +01: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::
|
2013-01-21 20:17:53 +01:00
|
|
|
The person who put a piece of code into Git.
|
2005-07-15 02:55:09 +02:00
|
|
|
|
2009-11-12 01:01:27 +01:00
|
|
|
GIT_EDITOR::
|
2013-01-21 20:17:53 +01:00
|
|
|
Text editor for use by Git commands. The value is meant to be
|
2009-11-12 01:01:27 +01:00
|
|
|
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
|
2012-03-31 10:42:34 +02:00
|
|
|
`$VISUAL`, then `$EDITOR`, and then the default chosen at compile
|
|
|
|
time, which is usually 'vi'.
|
2012-03-31 10:44:53 +02:00
|
|
|
ifdef::git-default-editor[]
|
|
|
|
The build you are using chose '{git-default-editor}' as the default.
|
|
|
|
endif::git-default-editor[]
|
2009-11-12 01:01:27 +01:00
|
|
|
|
2009-10-31 02:41:27 +01:00
|
|
|
GIT_PAGER::
|
2013-01-21 20:17:53 +01:00
|
|
|
Text viewer for use by Git commands (e.g., 'less'). The value
|
2009-10-31 02:41:27 +01:00
|
|
|
is meant to be interpreted by the shell. The order of preference
|
|
|
|
is the `$GIT_PAGER` environment variable, then `core.pager`
|
2012-03-31 10:42:34 +02:00
|
|
|
configuration, then `$PAGER`, and then the default chosen at
|
|
|
|
compile time (usually 'less').
|
2012-03-31 10:44:53 +02:00
|
|
|
ifdef::git-default-pager[]
|
|
|
|
The build you are using chose '{git-default-pager}' as the default.
|
|
|
|
endif::git-default-pager[]
|
2009-10-31 02:41:27 +01: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
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|