mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
19 lines
425 B
Plaintext
19 lines
425 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# 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`
|