Autogenerated manpages for v2.37.1-223-g6a475b
[git-manpages.git] / man1 / git-var.1
bloba0380790e081076e5a5c77a086ea8a880eaabde3
1 '\" t
2 .\"     Title: git-var
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 07/22/2022
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.37.1.223.g6a475b71f8
8 .\"  Language: English
9 .\"
10 .TH "GIT\-VAR" "1" "07/22/2022" "Git 2\&.37\&.1\&.223\&.g6a475b" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-var \- Show a Git logical variable
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit var\fR ( \-l | <variable> )
36 .fi
37 .sp
38 .SH "DESCRIPTION"
39 .sp
40 Prints a Git logical variable\&.
41 .SH "OPTIONS"
42 .PP
43 \-l
44 .RS 4
45 Cause the logical variables to be listed\&. In addition, all the variables of the Git configuration file \&.git/config are listed as well\&. (However, the configuration variables listing functionality is deprecated in favor of
46 \fBgit config \-l\fR\&.)
47 .RE
48 .SH "EXAMPLES"
49 .sp
50 .if n \{\
51 .RS 4
52 .\}
53 .nf
54 $ git var GIT_AUTHOR_IDENT
55 Eric W\&. Biederman <ebiederm@lnxi\&.com> 1121223278 \-0600
56 .fi
57 .if n \{\
58 .RE
59 .\}
60 .SH "VARIABLES"
61 .PP
62 GIT_AUTHOR_IDENT
63 .RS 4
64 The author of a piece of code\&.
65 .RE
66 .PP
67 GIT_COMMITTER_IDENT
68 .RS 4
69 The person who put a piece of code into Git\&.
70 .RE
71 .PP
72 GIT_EDITOR
73 .RS 4
74 Text editor for use by Git commands\&. The value is meant to be interpreted by the shell when it is used\&. Examples:
75 \fB~/bin/vi\fR,
76 \fB$SOME_ENVIRONMENT_VARIABLE\fR,
77 \fB"C:\eProgram Files\eVim\egvim\&.exe" \-\-nofork\fR\&. The order of preference is the
78 \fB$GIT_EDITOR\fR
79 environment variable, then
80 \fBcore\&.editor\fR
81 configuration, then
82 \fB$VISUAL\fR, then
83 \fB$EDITOR\fR, and then the default chosen at compile time, which is usually
84 \fIvi\fR\&.
85 .RE
86 .PP
87 GIT_PAGER
88 .RS 4
89 Text viewer for use by Git commands (e\&.g\&.,
90 \fIless\fR)\&. The value is meant to be interpreted by the shell\&. The order of preference is the
91 \fB$GIT_PAGER\fR
92 environment variable, then
93 \fBcore\&.pager\fR
94 configuration, then
95 \fB$PAGER\fR, and then the default chosen at compile time (usually
96 \fIless\fR)\&.
97 .RE
98 .PP
99 GIT_DEFAULT_BRANCH
100 .RS 4
101 The name of the first branch created in newly initialized repositories\&.
103 .SH "SEE ALSO"
105 \fBgit-commit-tree\fR(1) \fBgit-tag\fR(1) \fBgit-config\fR(1)
106 .SH "GIT"
108 Part of the \fBgit\fR(1) suite