The following command gets all the files that you recently added but not commited yet:
--name-only: shows all the files you changed relative to HEAD.
--name-status: to get the status symbol too.
--diff-filter=A: shows only the new recently added files.
$ git diff --cached --name-only --diff-filter=ADetails:
--name-only: shows all the files you changed relative to HEAD.
--name-status: to get the status symbol too.
--diff-filter=A: shows only the new recently added files.