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.
show . If no files are given all files which match the other specified criteria are shown.
The Unversioned Files changelist shows all files that have been added to your project, but that are not being tracked by Git.
Show the branch and tracking info even in short-format.
you can display a list of all patterns that are currently tracked ...
again, you can see that your README file is now tracked and staged to be committed:.
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 ...
Backup untracked files. List all git aliases; Show git status short; Checkout a commit prior to a day ago; Push a new local branch to remote repository and track ...