HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

git var — Print a Git logical variable's value. See `git config`, which is preferred over `git var`. More info

Submitted by: @import:tldr-pages··
0
Viewed 0 times
commandvaluelogicalcliprintvariablegit vargit

Problem

How to use the git var command: Print a Git logical variable's value. See git config, which is preferred over git var. More information: <https://git-scm.com/docs/git-var>.

Solution

git var — Print a Git logical variable's value. See git config, which is preferred over git var. More information: <https://git-scm.com/docs/git-var>.

Print the value of a Git logical variable:
git var {{GIT_AUTHOR_IDENT|GIT_COMMITTER_IDENT|GIT_EDITOR|GIT_PAGER}}


[l]ist all Git logical variables:
git var -l

Code Snippets

Print the value of a Git logical variable

git var {{GIT_AUTHOR_IDENT|GIT_COMMITTER_IDENT|GIT_EDITOR|GIT_PAGER}}

[l]ist all Git logical variables

git var -l

Context

tldr-pages: common/git var

Revisions (0)

No revisions yet.