If you want to list all the files currently being tracked under the branch master , you could use this command: git ls-tree -r master --name-only.
To list all the files currently being tracked under the branch master using: git ls- tree -r master --name-only. This command will list the files that ...
Based on the question linked by Kristjan but with extra arguments to match output of ls-files : git ls-tree --full-tree -r --name-only HEAD.
This merges the file listing in the index with the actual working directory list, and ...
If you want to list all files for a specific branch, e.g. master : git ls-tree -r master -- name-only. The -r option will let it recurse into subdirectories and print each file ...
Otherwise you can use no to have git status return more quickly without showing untracked files.
However, you can display a list of all patterns that are currently tracked by Git LFS (and the .gitattributes files ...
GitHub maintains a fairly comprehensive list of good .gitignore file examples for ...
Thus, commands like git grep that work on tracked files in the working copy may return ...
Show given paths which don't match any pattern.