Is there a way to get all files between two commits?
I tried to use
git diff <commitFrom> <commitTo> Scripts/**/*.sql
and basically to archive later
git archive --output=artifact.zip HEAD (git diff <commitFrom> <commitTo> UpdateScripts/**/*.sql)
I am getting empty artifact.zip file.