I am trying to clone/pull, all the files pushed to remote repository, only on a specific date (say, after 2018-08-06). In my remote repository, i have more than 10000 files, but i only need files pushed to the repository, on a specific date. With the below command, i am able to see the logs for a specific time period:
git log --since=2018-08-03 --until=2018-08-06
Now i need to clone only these files and not all the files in the repository. Please suggest.