Forrest logo
back to context overview

git-ls-files

List of commands for git-ls-files:

  • git-ls-files:tldr:4f48d git-ls-files: Show ignored and untracked files.
    $ git ls-files --others
    try on your machine
    explain this command
  • git-ls-files:tldr:7aeca git-ls-files: Show modified and deleted files.
    $ git ls-files --modified
    try on your machine
    explain this command
  • git-ls-files:tldr:8c587 git-ls-files: Show untracked files, not ignored.
    $ git ls-files --others --exclude-standard
    try on your machine
    explain this command
  • git-ls-files:tldr:b30d8 git-ls-files: Show deleted files.
    $ git ls-files --deleted
    try on your machine
    explain this command
back to context overview