mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
19 lines
446 B
Plaintext
19 lines
446 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# git info
|
|
|
|
> Display Git repository information.
|
|
> Part of `git-extras`.
|
|
> More information: <https://manned.org/git-info>.
|
|
|
|
- Display remote locations, remote and local branches, most recent commit data and `.git/config` settings:
|
|
|
|
`git info`
|
|
|
|
- Display remote locations, remote and local branches and most recent commit data:
|
|
|
|
`git info --no-config`
|