mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-08 10:06:01 +02:00

Co-authored-by: Juri Dispan <juri.dispan@posteo.net> Co-authored-by: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
20 lines
435 B
Markdown
20 lines
435 B
Markdown
# 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`
|