'svn status -v "." | grep ^[ ACMR] | (some regex to get only file names)'.
This command essentially gives a list of all files and folders. What would be the git equivalent for the above 'svn' command. The git command 'git ls-files' lists all the tracked files and not the folders in the directory.