I wanted to know the files which got changed in my gerrit repo for a particular day. Suppose If I run the command to fetch at 11:00 PM in the night It should fetch all the file names changed in a particular repo from 12:00 AM to 11:00 PM in the night.
I tried the below command but its fetching only last commit details :-
git log --name-only -n 1 HEAD~1..HEAD
Any Idea ?