I need to get names of all files changed after certain date. Seems like if I have commit_id I can use
git show --name-only <commit_id>
This gives me :
commit sfffwefwew3134343(origin/<branch_name>)
Author: ...............
Date: ..................
<Commit Msg>
abc/xyz/abc.sql
So basically two questions:
Is there a way to get just the file like abc/xyz/abc.sql?
If so, how can I get all commit id's after certain date so that I can iterate over all the id and grab the files changed?
OR
Is there a better way to find files that was changed after certain date?