mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 10:42:07 +02:00

Taken from https://fix.code-error.com/git-list-only-untracked-files-also-custom-commands/
399 B
399 B
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
- Show untracked files, not ignored:
git ls-files --others --exclude-standard