I want to know the list of files that are known to version control.
I know that in SVN, you can do something like:
svn -v status
then you get a list of
"[rev#1] [rev#2] [creator] [file name]"
rev#1 is the last revision that has this file and rev#2 is the first revision that has this file.
This list contains all the files that are tracked by svn other than only the ones that have local changes.
I wonder how to do this using GIT