Is there a way to list all tracked and untracked files considering the standard Git exclusion like (.git/info/exclude, .gitignore)?
Is there a way to list all tracked and untracked files considering the standard Git exclusion like (.git/info/exclude, .gitignore)?
We can use bash grouping commands with git ls-files
{ git ls-files --exclude-standard --other; git ls-files }