Here are few ways to display all committed files in Git repository.
The command will list all the files currently being tracked under the branch master
git ls-tree -r master --name-only
List files of the current branch
git ls-tree -r master --name-only
show all of the tracked files that have been committed (on the current branch),
git ls-tree --full-tree --name-only -r HEAD