1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 13:02:08 +02:00
tldr/pages/common/git-ls-files.md
2020-10-24 13:41:47 +01:00

16 lines
317 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 --deleted`
- Show modified and deleted files:
`git ls-files --modified`
- Show ignored and untracked files:
`git ls-files --others`