List all files already committed and being tracked
git ls-tree --full-tree -r HEAD # or instead of HEAD, the commit hash or branch name
git ls-tree -r master --name-only
git log --pretty=format: --name-only --diff-filter=A | sort - | sed '/^$/d'
git ls-tree --full-tree -r HEAD # or instead of HEAD, the commit hash or branch name
git ls-tree -r master --name-only
git log --pretty=format: --name-only --diff-filter=A | sort - | sed '/^$/d'