I have a git repo with one file which has new commits added almost daily.
I would like to extract copies of the file as it looked at every commit to a new directory.
Ideally the files would be date-stamped (2017_08_24.txt
) according to when the commit was made.
I've already tried git format-patch -o directory --root HEAD
but this exports the changelog, not the full file as it looked at the time of the commit.
Thanks