mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
26 lines
528 B
Plaintext
26 lines
528 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# git ls-files
|
|
|
|
> Show information about files in the index and the working tree.
|
|
> More information: <https://git-scm.com/docs/git-ls-files>.
|
|
|
|
- Show deleted files:
|
|
|
|
`git ls-files {{[-d|--deleted]}}`
|
|
|
|
- Show modified and deleted files:
|
|
|
|
`git ls-files {{[-m|--modified]}}`
|
|
|
|
- Show ignored and untracked files:
|
|
|
|
`git ls-files {{[-o|--others]}}`
|
|
|
|
- Show untracked files, not ignored:
|
|
|
|
`git ls-files {{[-o|--others]}} --exclude-standard`
|